Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-07-05 23:21:30 +0300
committerGitHub <noreply@github.com>2022-07-05 23:21:30 +0300
commit79b6caada8c059d1e0dc0e9c9b5ca7a3f535b8b0 (patch)
tree6a51687d8d40bda1d2e77648a049ee7b960932c8 /apps/files/js/filelist.js
parent8b23c1c6772afdd4a1709bdb85cf3b88c5b5a6a5 (diff)
parent55722092d3602ba456e9b3bf2c6b06a871aa4bb3 (diff)
Merge pull request #32993 from nextcloud/fixes-for-quota-text-in-navigation-bar
Fixes for quota text in navigation bar
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 19b746ec847..42afe792142 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2637,7 +2637,10 @@
self.showFileBusyState($tr, false);
});
};
- return this.reportOperationProgress(fileNames, moveFileFunction, callback);
+ return this.reportOperationProgress(fileNames, moveFileFunction, callback).then(function() {
+ self.updateStorageStatistics();
+ self.updateStorageQuotas();
+ });
},
_reflect: function (promise){
@@ -2817,7 +2820,10 @@
}
});
};
- return this.reportOperationProgress(fileNames, copyFileFunction, callback);
+ return this.reportOperationProgress(fileNames, copyFileFunction, callback).then(function() {
+ self.updateStorageStatistics();
+ self.updateStorageQuotas();
+ });
},
/**