diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-01-03 17:53:48 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-01-03 17:53:48 +0100 |
commit | ab1985b62b56699061f2206b15404f7f881797c5 (patch) | |
tree | 403292c360845cac9e7e486941c352d4b3a25d4a /apps/files/js/filelist.js | |
parent | 62d71158a9ee8b17a61c852da952f5c757e0d17c (diff) | |
download | nextcloud-server-ab1985b62b56699061f2206b15404f7f881797c5.tar.gz nextcloud-server-ab1985b62b56699061f2206b15404f7f881797c5.zip |
Fixed quota update on upload and on delete
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 5e17f128a7d..7a4ea492752 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1803,7 +1803,7 @@ }, updateStorageQuotas: function() { - OCA.Files.Files.updateStorageQuotas(this.getCurrentDirectory()); + OCA.Files.Files.updateStorageQuotas(); }, /** @@ -2636,6 +2636,7 @@ self.updateSelectionSummary(); // FIXME: don't repeat this, do it once all files are done self.updateStorageStatistics(); + self.updateStorageQuotas(); } _.each(files, function(file) { |