diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-09-19 12:17:06 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-10-24 15:43:15 +0200 |
commit | 44cf67accdc294f46bf82b3f8661f353dc5e22f0 (patch) | |
tree | 4e0211076e1a7d9ee06e6f89429509114832be05 /apps/files/js | |
parent | 729c06548fbfe035c14dae68c4b09494b292d217 (diff) | |
download | nextcloud-server-44cf67accdc294f46bf82b3f8661f353dc5e22f0.tar.gz nextcloud-server-44cf67accdc294f46bf82b3f8661f353dc5e22f0.zip |
Storage 503 message improvements
"Storage not available" is now "Storage temporarily not available".
Exceptions are now logged in DEBUG level, not FATAL.
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 159d008e6e6..b8f605fe4ed 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1602,7 +1602,7 @@ this.changeDirectory('/'); // TODO: read error message from exception OC.Notification.showTemporary( - t('files', 'Storage not available') + t('files', 'Storage is temporarily not available') ); } return false; |