summaryrefslogtreecommitdiff
path: root/components/addons/src/XPIProvider.jsm
diff options
context:
space:
mode:
Diffstat (limited to 'components/addons/src/XPIProvider.jsm')
-rw-r--r--components/addons/src/XPIProvider.jsm6
1 files changed, 1 insertions, 5 deletions
diff --git a/components/addons/src/XPIProvider.jsm b/components/addons/src/XPIProvider.jsm
index c5dcc7f9c..4d203b573 100644
--- a/components/addons/src/XPIProvider.jsm
+++ b/components/addons/src/XPIProvider.jsm
@@ -6098,11 +6098,7 @@ function UpdateChecker(aAddon, aListener, aReason, aAppVersion, aPlatformVersion
if ("onUpdateAvailable" in this.listener)
aReason |= UPDATE_TYPE_NEWVERSION;
- // Don't perform substitutions on the update URL if we still don't
- // have one at this point.
- let url = updateURL ?
- escapeAddonURI(aAddon, url, aReason, aAppVersion) :
- updateURL;
+ let url = escapeAddonURI(aAddon, updateURL, aReason, aAppVersion);
this._parser = AddonUpdateChecker.checkForUpdates(aAddon.id, aAddon.updateKey,
url, this);
}