Skip to content

Commit 6044442

Browse files
authored
Merge pull request #44413 from nextcloud/backport/44408/stable28
[stable28] fix(JSRecourceLocator): Add missing slash after server root
2 parents 724a62d + cee151a commit 6044442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Template/JSResourceLocator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function doFind($script) {
5252
$app = substr($script, 0, strpos($script, '/'));
5353
$scriptName = basename($script);
5454
// Get the app root path
55-
$appRoot = $this->serverroot . 'apps/';
55+
$appRoot = $this->serverroot . '/apps/';
5656
$appWebRoot = null;
5757
try {
5858
// We need the dir name as getAppPath appends the appid

0 commit comments

Comments
 (0)