Merge pull request #44408 from nextcloud/fix/jsresource-locator-app-root

fix(JSRecourceLocator): Add missing slash after server root
chore/use-nextcloud-cypress-docker-node
Ferdinand Thiessen 2 months ago committed by GitHub
commit d4216bd08b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -52,7 +52,7 @@ class JSResourceLocator extends ResourceLocator {
$app = substr($script, 0, strpos($script, '/'));
$scriptName = basename($script);
// Get the app root path
$appRoot = $this->serverroot . 'apps/';
$appRoot = $this->serverroot . '/apps/';
$appWebRoot = null;
try {
// We need the dir name as getAppPath appends the appid

Loading…
Cancel
Save