diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-09-23 04:33:22 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-09-23 04:33:22 -0400 |
commit | 29512806a7b1b7da6c479f34487ac06446f388da (patch) | |
tree | 20bfb1916695acbc9f4990b0744d30fb0877a48f /toolkit/mozapps/extensions | |
parent | bb81b207635402c9b8bc6355c50f891bd3ef3453 (diff) | |
download | uxp-29512806a7b1b7da6c479f34487ac06446f388da.tar.gz |
Update list of IDs to never send to AUS in AddonUpdateChecker.jsm
Diffstat (limited to 'toolkit/mozapps/extensions')
-rw-r--r-- | toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm b/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm index f927bc745d..c06dca1d53 100644 --- a/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm +++ b/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm @@ -976,12 +976,13 @@ this.AddonUpdateChecker = { * down in-progress update requests */ checkForUpdates: function(aId, aUpdateKey, aUrl, aObserver) { - // Define an array of internally used IDs to NOT send to AUS such as the - // Default Theme. Please keep this list in sync with: - // toolkit/mozapps/extensions/AddonUpdateChecker.jsm + // Define an array of internally used IDs to NOT send to AUS. let internalIDS = [ - '{972ce4c6-7e08-4474-a285-3208198ce6fd}', - 'modern@themes.mozilla.org' + '{972ce4c6-7e08-4474-a285-3208198ce6fd}', // Global Default Theme + 'modern@themes.mozilla.org', // Modern Theme for Borealis/Suite-based Applications + 'xplatform@interlink.projects.binaryoutcast.com', // Pref-set default theme for Interlink + '{e2fda1a4-762b-4020-b5ad-a41df1933103}', // Lightning/Calendar Extension + '{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}' // Provider for Google Calendar (gdata) Extension ]; // If the ID is not in the array then go ahead and query AUS |