Skip to content

Commit 291b13a

Browse files
committed
ignore installed packages on forced install
1 parent fd6779b commit 291b13a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/chrome/lib/IBWUpdater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ function IBWUpdaterPackages(aForceInstall) {
440440
* aPackage - the package object
441441
*/
442442
function addToInstalled(aPackage) {
443-
if (aPackage instanceof IBWUpdaterPackage) {
443+
if (!forceInstall && aPackage instanceof IBWUpdaterPackage) {
444444
localPackages.push(aPackage);
445445
}
446446
}

0 commit comments

Comments
 (0)