diff options
Diffstat (limited to 'src/main/kotlin/FileController.kt')
-rw-r--r-- | src/main/kotlin/FileController.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index d1e1870..1b48b4c 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -176,7 +176,7 @@ class FileController { if (userId > 0) { val path = "$firstParam${if (shareType == "dir") "/" else ""}" val accessId = databaseController.getAccessId(path, userId) - ctx.result("${ctx.host()}/shared?id=$accessId") + ctx.result("${ctx.host()}/file/shared?id=$accessId") } } |