this post was submitted on 09 Oct 2021
0 points (50.0% liked)
Firefox
17890 readers
17 users here now
A place to discuss the news and latest developments on the open-source browser Firefox
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
From your comment on this other post and the downvotes it generated on said post, while this post and your comment get upvoted, I guess neither you nor anybody even checked to see what "offline" means...
If you scrolled down a little from the link you provided, you would have seen that "offline" really means:
So basically "offline" = "opt-out" and not opt-in.
Quoting from source code comment:
Sets the appropriate Firefox Suggest scenario based on the current Nimbus
Related source code:
async _updateFirefoxSuggestScenarioHelper() { let scenario = this._nimbus.quickSuggestScenario; if (!scenario) { await Region.init(); if ( Region.home == "US" && Services.locale.appLocaleAsBCP47.substring(0, 2) == "en" ) { // offline rollout for en locales in the US region scenario = "offline"; } else { // no rollout scenario = "history"; } }
I think this should be self explanatory.
And how would that support your claim that this post is:
The relevant parts from this code comment about the "offline" mode are:
Which correspond to the code I've already linked to.
The code you cited just says that users with locale "en-US" are enrolled in the "offline" mode.
Basically:
To summarize, the "offline" / "online" Suggest Scenario have absolutely nothing to do with the fact that Firefox sends data to Mozilla or not, it only defines if the Suggest feature is opt-in or opt-out. Is this naming extremely confusing? Absolutely! But at this point it's clear that Mozilla has done everything possible to mislead users about what their "suggestions" really are.
So please, stop spreading misinformation while claiming that people trying to bring awareness about this awful "feature" are the ones providing false information. A code comment is not proof, your completely wrong interpretation of it even less so. If you don't agree, please link to the relevant source code which would contradict the one I've linked to.
Can you read the below stuff?
This is the scenario for the “offline” rollout. Firefox Suggest suggestions are enabled by default. Search strings and matching keywords are not included in related telemetry. The onboarding dialog is not shown. online This is the scenario for the “online” rollout. The onboarding dialog will be shown and the user must opt in to enable Firefox Suggest suggestions and related telemetry, which will include search strings and matching keywords.
"offline" - Search strings and matching keywords are not included in related telemetry.
"online" - user must opt in to enable Firefox Suggest suggestions and related telemetry, which will include search strings and matching keywords