1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

Remove userid from Ga service, not being used

This commit is contained in:
Kyle Spearrin
2017-04-19 21:05:03 -04:00
parent a960ccd786
commit 8e29a990cb
8 changed files with 5 additions and 48 deletions

View File

@@ -107,7 +107,7 @@ namespace Bit.App.Pages
AnalyticsCell = new ExtendedSwitchCell
{
Text = AppResources.DisableGA,
On = _settings.GetValueOrDefault(Constants.SettingGAOptOut, false)
On = _settings.GetValueOrDefault(Constants.SettingGaOptOut, false)
};
FoldersCell = new ExtendedTextCell
@@ -429,7 +429,7 @@ namespace Bit.App.Pages
return;
}
_settings.AddOrUpdateValue(Constants.SettingGAOptOut, cell.On);
_settings.AddOrUpdateValue(Constants.SettingGaOptOut, cell.On);
_googleAnalyticsService.SetAppOptOut(cell.On);
}