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

This commit is contained in:
Aleksander Machniak 2015-03-09 16:18:42 -04:00
parent 3702557dc3
commit 2fe963f48f

View file

@ -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});
}