diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-25 12:00:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 12:00:56 +0100 |
commit | 47646794b9426f40c12719d78c5a92a71570b4b2 (patch) | |
tree | 0b9f5e513b0aba50b8320787d5ffda5e1a8cbb18 /lib/base.php | |
parent | e502a2df48d86c60eb61156b9aefd6ebccd17466 (diff) | |
parent | 2144a114b024c1341a8f46af9b2b7e463e3bfc05 (diff) | |
download | nextcloud-server-47646794b9426f40c12719d78c5a92a71570b4b2.tar.gz nextcloud-server-47646794b9426f40c12719d78c5a92a71570b4b2.zip |
Merge pull request #2322 from nextcloud/compat-with-chrome54
Remove exception for Chrome on Mobile
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/base.php b/lib/base.php index 00e984d80c5..7bd14de56b6 100644 --- a/lib/base.php +++ b/lib/base.php @@ -538,15 +538,6 @@ class OC { return; } - // Chrome on Android has a bug that it doesn't sent cookies with the - // same-site attribute for the download manager. To work around that - // all same-site cookies get deleted and recreated directly. Awesome! - // FIXME: Remove once Chrome 54 is deployed to end-users - // @see https://github.com/nextcloud/server/pull/1454 - if($request->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_ANDROID_MOBILE_CHROME])) { - return; - } - if(count($_COOKIE) > 0) { $requestUri = $request->getScriptName(); $processingScript = explode('/', $requestUri); |