diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-05-09 08:43:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 08:43:35 +0200 |
commit | 888e719671cd9af1c66ece1b2b9ab7543e1ff075 (patch) | |
tree | c4f479a0cc04b5640c500831da9aa1a9ff40c7b5 /lib | |
parent | 37b847ec48bab86f6d126f5c2185f0a5bc0a4267 (diff) | |
parent | ccd0ded812c2039c14293b78310f144f1b5d7538 (diff) | |
download | nextcloud-server-888e719671cd9af1c66ece1b2b9ab7543e1ff075.tar.gz nextcloud-server-888e719671cd9af1c66ece1b2b9ab7543e1ff075.zip |
Merge pull request #4750 from nextcloud/allow-requests-to-manifest-json
Don't redirect requests to /core/img/manifest.json
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Setup.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Setup.php b/lib/private/Setup.php index b1cf289d9aa..b8a861fd296 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -462,6 +462,7 @@ class Setup { $content .= "\n RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$"; + $content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/public.php"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/cron.php"; |