mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1116775 - Handle rejection in WebappManager::doUninstall. r=myk
This commit is contained in:
parent
86c3ff5a22
commit
33db2f16a1
@ -122,7 +122,7 @@ this.WebappManager = {
|
||||
// Perform the uninstall if the user allows it
|
||||
if (choice == 0) {
|
||||
DOMApplicationRegistry.confirmUninstall(aData).then((aApp) => {
|
||||
WebappOSUtils.uninstall(aApp);
|
||||
WebappOSUtils.uninstall(aApp).then(null, Cu.reportError);
|
||||
});
|
||||
} else {
|
||||
DOMApplicationRegistry.denyUninstall(aData);
|
||||
|
Loading…
Reference in New Issue
Block a user