Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix telemetry APP name. (#1382)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Jul 9, 2019
1 parent f06a7fe commit 6ceea50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static void init(Context aContext) {
final boolean telemetryEnabled = SettingsStore.getInstance(aContext).isTelemetryEnabled();
final TelemetryConfiguration configuration = new TelemetryConfiguration(aContext)
.setServerEndpoint("https://incoming.telemetry.mozilla.org")
.setAppName(APP_NAME + "_" + BuildConfig.FLAVOR_platform)
.setAppName(APP_NAME + "_" + (DeviceType.isOculusBuild() ? "oculusvr" : BuildConfig.FLAVOR_platform))
.setUpdateChannel(BuildConfig.BUILD_TYPE)
.setPreferencesImportantForTelemetry(resources.getString(R.string.settings_key_locale))
.setCollectionEnabled(telemetryEnabled)
Expand Down

0 comments on commit 6ceea50

Please sign in to comment.