Skip to content

Commit

Permalink
Bug 1839458 - Address undesired event pings from empty whats new pane…
Browse files Browse the repository at this point in the history
…l provider r=omc-reviewers,aminomancer

This patch simply disables the whats-new-panel provider to prevent a huge influx of undesired events due to the unused provider being empty.

Differential Revision: https://phabricator.services.mozilla.com/D193084
  • Loading branch information
jwayn committed Nov 30, 2023
1 parent 95cdecd commit 109ceb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/app/profile/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts",

// ASRouter provider configuration
pref("browser.newtabpage.activity-stream.asrouter.providers.cfr", "{\"id\":\"cfr\",\"enabled\":true,\"type\":\"remote-settings\",\"collection\":\"cfr\",\"updateCycleInMs\":3600000}");
pref("browser.newtabpage.activity-stream.asrouter.providers.whats-new-panel", "{\"id\":\"whats-new-panel\",\"enabled\":true,\"type\":\"remote-settings\",\"collection\":\"whats-new-panel\",\"updateCycleInMs\":3600000}");
pref("browser.newtabpage.activity-stream.asrouter.providers.whats-new-panel", "{\"id\":\"whats-new-panel\",\"enabled\":false,\"type\":\"remote-settings\",\"collection\":\"whats-new-panel\",\"updateCycleInMs\":3600000}");
pref("browser.newtabpage.activity-stream.asrouter.providers.message-groups", "{\"id\":\"message-groups\",\"enabled\":true,\"type\":\"remote-settings\",\"collection\":\"message-groups\",\"updateCycleInMs\":3600000}");
// This url, if changed, MUST continue to point to an https url. Pulling arbitrary content to inject into
// this page over http opens us up to a man-in-the-middle attack that we'd rather not face. If you are a downstream
Expand Down

0 comments on commit 109ceb1

Please sign in to comment.