We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d170fda commit 2ff1eb6Copy full SHA for 2ff1eb6
1 file changed
browser/pages/install/controller.js
@@ -24,7 +24,9 @@ class InstallController {
24
if(value.isDownloadRequired()) {
25
this.totalDownloads += value.totalDownloads;
26
}
27
- this.totalAmount += value.size;
+ if(!value.downloaded) {
28
+ this.totalAmount += value.size;
29
+ }
30
31
32
this.itemProgress = new ProgressState('', undefined, undefined, undefined, this.$scope, this.$timeout);
0 commit comments