Skip to content

Commit 8224305

Browse files
authored
Merge pull request #1030 from nextcloud/backport/1025/stable18
[stable18] Sessionid is an int
2 parents b62b6ef + 761b62d commit 8224305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Controller/PublicSessionController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function create(string $token, string $file = null, $guestName = null, bo
8080
* @NoAdminRequired
8181
* @PublicPage
8282
*/
83-
public function fetch(int $documentId, string $sessionId, string $sessionToken): Response {
83+
public function fetch(int $documentId, int $sessionId, string $sessionToken): Response {
8484
return $this->apiService->fetch($documentId, $sessionId, $sessionToken);
8585
}
8686

0 commit comments

Comments
 (0)