diff --git a/toolkit/modules/UpdateUtils.jsm b/toolkit/modules/UpdateUtils.jsm index 5acf395d3d..80cddfd369 100644 --- a/toolkit/modules/UpdateUtils.jsm +++ b/toolkit/modules/UpdateUtils.jsm @@ -81,7 +81,10 @@ this.UpdateUtils = { [/%PLATFORM_VERSION%/g, Services.appinfo.platformVersion], [/%DISTRIBUTION%/g, distribution], [/%DISTRIBUTION_VERSION%/g, distributionVersion], - [/%LOCALE%/g, this.Locale] + [/%LOCALE%/g, this.Locale], + [/%CPU_SSE2%/g, navigator.cpuHasSSE2], + [/%CPU_AVX%/g, navigator.cpuHasAVX], + [/%CPU_AVX2%/g, navigator.cpuHasAVX2] ]; substs.forEach(([_subst, _value]) => aUpdateURL = aUpdateURL.replace(_subst, _value));