diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:49:22 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:49:22 +0200 |
commit | b090ed7666cb56b88f094ebb910641646d118c1c (patch) | |
tree | f256ab2561f60bb01071d6d868281eccfab9fc9b /apps/files | |
parent | 757f3205311e6839cc2f29d7a10852982fb1d4ad (diff) | |
parent | cdc13868852ee91158c78ca4877a2c4653ac0931 (diff) | |
download | nextcloud-server-b090ed7666cb56b88f094ebb910641646d118c1c.tar.gz nextcloud-server-b090ed7666cb56b88f094ebb910641646d118c1c.zip |
Merge pull request #19747 from owncloud/files-delete-hidenotif
Hide notification on delete
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 246c5bd6290..721ebb8c836 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2015,6 +2015,8 @@ self.fileSummary.update(); self.updateSelectionSummary(); self.updateStorageStatistics(); + // in case there was a "storage full" permanent notification + OC.Notification.hide(); } else { if (result.status === 'error' && result.data.message) { OC.Notification.show(result.data.message); |