Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-09-08 10:59:10 +0300
committerGitHub <noreply@github.com>2020-09-08 10:59:10 +0300
commit77a64883c163e880ce65d23886488d336fa5a490 (patch)
treebbb9946f75172461556a5c2ac4231238aaa981a3 /lib
parentdec5cce6317713056c93a2a535bfa882f29440bf (diff)
parent5b8cbb9a5222554a590c574d24814587033a0937 (diff)
Merge pull request #1025 from nextcloud/fix/session_is_int
Sessionid is an int
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/PublicSessionController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PublicSessionController.php b/lib/Controller/PublicSessionController.php
index 015f5c0a7..dbf9a2642 100644
--- a/lib/Controller/PublicSessionController.php
+++ b/lib/Controller/PublicSessionController.php
@@ -80,7 +80,7 @@ class PublicSessionController extends PublicShareController {
* @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);
}