diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-13 13:12:16 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-13 19:28:38 +0200 |
commit | ab63c89ab37611a306c12ba9020bda8ee8036460 (patch) | |
tree | a855eb24d3c47e0dabc6ed83bcad4fe6992202cb /apps/dav/lib/Server.php | |
parent | d659199ff5eb3aeae66155c9f151ffd81c697cd3 (diff) | |
download | nextcloud-server-ab63c89ab37611a306c12ba9020bda8ee8036460.tar.gz nextcloud-server-ab63c89ab37611a306c12ba9020bda8ee8036460.zip |
Fix quota calculation on new dav upload endpoint
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav/lib/Server.php')
-rw-r--r-- | apps/dav/lib/Server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php index ac0abc8b4eb..6f3ab3971ef 100644 --- a/apps/dav/lib/Server.php +++ b/apps/dav/lib/Server.php @@ -212,7 +212,7 @@ class Server { ); if ($view !== null) { $this->server->addPlugin( - new QuotaPlugin($view)); + new QuotaPlugin($view, false)); } $this->server->addPlugin( new TagsPlugin( |