From 5032d9595801441bae67861e7cd75c0082a43fcd Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 11 Apr 2015 14:38:07 +0200 Subject: [PATCH] update size if it changes, i.e. multipart with multipart videos --- static/js/cacheDialog.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/cacheDialog.js b/static/js/cacheDialog.js index d0c1975f..8d4efe40 100644 --- a/static/js/cacheDialog.js +++ b/static/js/cacheDialog.js @@ -328,6 +328,9 @@ pandora.ui.cacheDialog = function() { if (!Ox.isEmpty(current) && current.progress != file.progress) { $list.value(file.id, 'progress', file.progress); } + if (!Ox.isEmpty(current) && current.size != file.size) { + $list.value(file.id, 'size', file.size); + } }); updateStatus(); });