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
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-09-09 12:27:01 +0300
committerGitHub <noreply@github.com>2020-09-09 12:27:01 +0300
commit82243057971c07c612af3243e1db147dec2e866d (patch)
tree69a8a18cd0d4a41da269f10757c81828a64056dc
parentb62b6efa3ca9b18ec0135f9c12ff4352cf312792 (diff)
parent761b62d89afe9f43278b7a2710b5f82fbb41cbe4 (diff)
Merge pull request #1030 from nextcloud/backport/1025/stable18v18.0.9
[stable18] Sessionid is an int
-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);
}