update size if it changes, i.e. multipart with multipart videos

This commit is contained in:
j 2015-04-11 14:38:07 +02:00
parent abb894636b
commit 5032d95958

View File

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