Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Desktop browser telemetry #633

Merged
merged 5 commits into from Nov 30, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Strip separators from browser version number.
  • Loading branch information
sammacbeth committed Nov 20, 2020
commit 7b3d9a0f1f97bb9429629fac2a443148436c2247
@@ -194,13 +194,13 @@ class Globals {
this.BROWSER_INFO.name = 'ghostery_android';
this.BROWSER_INFO.token = 'ga';
this.BROWSER_INFO.os = 'android';
this.BROWSER_INFO.version = info.version;
} else {
this.BROWSER_INFO.displayName = 'Ghostery Desktop Browser';
this.BROWSER_INFO.name = 'ghostery_desktop';
this.BROWSER_INFO.token = 'gd';
this.BROWSER_INFO.version = info.version;
this.BROWSER_INFO.version = info.version.split('.').join('');
}
this.BROWSER_INFO.version = info.version;
}
});
}
ProTip! Use n and p to navigate between commits in a pull request.