diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-07-21 21:50:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 21:50:03 +0200 |
commit | b47b3d8a850129c8d5da9ce80ed0b3172b793923 (patch) | |
tree | f68b76b9059951cf438517660bf62320e3d4d430 | |
parent | 654672f4a38c19caf537e7392755a377a52f9873 (diff) | |
parent | dedf51b6e6bbaf1395ce225de5d510bc3106c37d (diff) | |
download | nextcloud-server-b47b3d8a850129c8d5da9ce80ed0b3172b793923.tar.gz nextcloud-server-b47b3d8a850129c8d5da9ce80ed0b3172b793923.zip |
Merge pull request #28092 from nextcloud/debt/noid/add-quota-plugin
QuotaPlugin expect 1 parameter
-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 9193da49b48..49a9f2e531e 100644 --- a/apps/dav/lib/Server.php +++ b/apps/dav/lib/Server.php @@ -254,7 +254,7 @@ class Server { ); if ($view !== null) { $this->server->addPlugin( - new QuotaPlugin($view, false)); + new QuotaPlugin($view)); } $this->server->addPlugin( new TagsPlugin( |