plugins/kolab_files

Aleksander Machniak machniak at kolabsys.com
Mon Mar 9 21:19:34 CET 2015


 plugins/kolab_files/kolab_files.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2fe963f48fd6cd457bd856858936dfba602d8ff0
Author: Aleksander Machniak <machniak at kolabsys.com>
Date:   Mon Mar 9 16:18:42 2015 -0400

    Fix infinite "Uploading files..." message when upload progress feature is disabled (#4774)

diff --git a/plugins/kolab_files/kolab_files.js b/plugins/kolab_files/kolab_files.js
index 1a8106a..81a618f 100644
--- a/plugins/kolab_files/kolab_files.js
+++ b/plugins/kolab_files/kolab_files.js
@@ -2109,7 +2109,7 @@ function kolab_files_ui()
 
   this.file_upload_progress_stop = function(id)
   {
-    if (id && this.uploads[id]) {
+    if (id) {
       delete this.uploads[id];
       rcmail.display_progress({name: id});
     }




More information about the commits mailing list