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:16:29 +0200 |
commit | f5d3d3f72a64850c5964e988befa50c102feb87f (patch) | |
tree | 6b4389fe5fd66483809232b69afbcc34e7ba91e3 /lib/base.php | |
parent | feef3cbba03c4517b25a60820e8c4534b0a02b67 (diff) | |
download | nextcloud-server-f5d3d3f72a64850c5964e988befa50c102feb87f.tar.gz nextcloud-server-f5d3d3f72a64850c5964e988befa50c102feb87f.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/base.php')
-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 8af674e7ee8..fa2f5011f16 100644 --- a/lib/base.php +++ b/lib/base.php @@ -525,6 +525,7 @@ class OC { $incompatibleUserAgents = [ // OS X Finder '/^WebDAVFS/', + '/^Microsoft-WebDAV-MiniRedir/', ]; if($request->isUserAgent($incompatibleUserAgents)) { return; |