diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-09-19 12:02:36 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2012-09-19 12:02:36 +0200 |
commit | 6596094a284f8e800a2b50f9cf82973ce7daea2f (patch) | |
tree | 44e8e82ae7dde97e3e17427308bf375001d2e2d6 /apps/files/js | |
parent | 1e880feab1300eb54e9ce82438733ef3c5548a8c (diff) | |
download | nextcloud-server-6596094a284f8e800a2b50f9cf82973ce7daea2f.tar.gz nextcloud-server-6596094a284f8e800a2b50f9cf82973ce7daea2f.zip |
add generated unique file name to the uploadingFiles list instead of the original name
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index aefd6f20bec..824b04cebb0 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -356,7 +356,7 @@ $(document).ready(function() { $('#notification').fadeIn(); } }); - uploadingFiles[files[i].name] = jqXHR; + uploadingFiles[uniqueName] = jqXHR; } } }else{ |