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:48 +0200 |
commit | 2e6dc4240be4b5cbba052d4b420bedc25be7265f (patch) | |
tree | d49c1453772bea1b0b57d786f6cff03732830bc9 | |
parent | 228811c24e816e7c6c8f867f447afccab431c2fe (diff) | |
download | nextcloud-server-2e6dc4240be4b5cbba052d4b420bedc25be7265f.tar.gz nextcloud-server-2e6dc4240be4b5cbba052d4b420bedc25be7265f.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>
-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 29778f02a45..dde00c1ce0a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -534,6 +534,7 @@ class OC { $incompatibleUserAgents = [ // OS X Finder '/^WebDAVFS/', + '/^Microsoft-WebDAV-MiniRedir/', ]; if($request->isUserAgent($incompatibleUserAgents)) { return; |