Skip to content

Commit

Permalink
Merge pull request #1029 from nextcloud/backport/1025/stable19
Browse files Browse the repository at this point in the history
[stable19] Sessionid is an int
  • Loading branch information
juliushaertl authored Sep 9, 2020
2 parents 953e679 + 7aa3682 commit 6cb27af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/PublicSessionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function create(string $token, string $file = null, $guestName = null, bo
* @NoAdminRequired
* @PublicPage
*/
public function fetch(int $documentId, string $sessionId, string $sessionToken): Response {
public function fetch(int $documentId, int $sessionId, string $sessionToken): Response {
return $this->apiService->fetch($documentId, $sessionId, $sessionToken);
}

Expand Down

0 comments on commit 6cb27af

Please sign in to comment.