Don't be extra annoying about analytics in debug mode

This commit is contained in:
Vincent Breitmoser
2018-07-17 20:32:32 +02:00
parent c54c7900d2
commit 25712e2d6b

View File

@@ -42,7 +42,7 @@ public class AnalyticsConsentRequester {
boolean askedBeforeAndWasRejected =
preferences.isAnalyticsAskedPolitely() && !preferences.isAnalyticsHasConsent();
if (!Constants.DEBUG && askedBeforeAndWasRejected) {
if (askedBeforeAndWasRejected) {
return;
}