diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-05 13:16:29 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-05 13:51:22 +0200 |
commit | 41b37c905ce7896248c6ea4e0e809da679a9db78 (patch) | |
tree | 51d47f942b9786bdddaea1042e9c3f95f6b8ef19 /lib | |
parent | 652d0413cffc310b7f35f89fef6c8a4fadc87038 (diff) | |
download | nextcloud-server-41b37c905ce7896248c6ea4e0e809da679a9db78.tar.gz nextcloud-server-41b37c905ce7896248c6ea4e0e809da679a9db78.zip |
Allow usage of Windows 10 WebDav Netdrive
Fixes #3523
As long as we don't have #8123 lets not leave our Window10 netdrive
users hanging.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php index 080b268795c..b94f2baa76e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -541,6 +541,7 @@ class OC { $incompatibleUserAgents = [ // OS X Finder '/^WebDAVFS/', + '/^Microsoft-WebDAV-MiniRedir/', ]; if($request->isUserAgent($incompatibleUserAgents)) { return; |