Commit 3a5e4498 authored by Alex Catarineu's avatar Alex Catarineu Committed by Matthew Finkel
Browse files

Bug 33342: Avoid disconnect search addon error after removal.

We removed the addon in #32767, but it was still being loaded
from addonStartup.json.lz4 and throwing an error on startup
because its resource: location is not available anymore.
parent ea57e876
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -982,6 +982,12 @@ var BuiltInLocation = new (class _BuiltInLocation extends XPIStateLocation {
  get enumerable() {
    return false;
  }

  restore(saved) {
    super.restore(saved);
    // Bug 33342: avoid restoring disconnect addon from addonStartup.json.lz4.
    this.removeAddon("disconnect@search.mozilla.org");
  }
})();

/**