Bug 836016 - Cannot reinstall an app after uninstalling it. r=fabrice

This commit is contained in:
Marco Castelluccio 2013-02-15 08:39:31 -05:00
parent c3fdb25c61
commit 2df4fee39a

View File

@ -1630,7 +1630,7 @@ this.DOMApplicationRegistry = {
// Disallow reinstalls from the same origin for now.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=821288
if (this._appId(app.origin) !== null) {
if (this._appId(app.origin) !== null && this._isLaunchable(app.origin)) {
sendError("REINSTALL_FORBIDDEN");
return;
}