mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-08 09:18:39 +01:00
Default the donor badge flags to 'on'.
This commit is contained in:
@@ -413,7 +413,7 @@ public final class FeatureFlags {
|
|||||||
if (Environment.IS_STAGING) {
|
if (Environment.IS_STAGING) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return getBoolean(DONOR_BADGES, false ) || SignalStore.donationsValues().getSubscriber() != null;
|
return getBoolean(DONOR_BADGES, true) || SignalStore.donationsValues().getSubscriber() != null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -421,7 +421,7 @@ public final class FeatureFlags {
|
|||||||
* Whether or not donor badges should be displayed throughout the app.
|
* Whether or not donor badges should be displayed throughout the app.
|
||||||
*/
|
*/
|
||||||
public static boolean displayDonorBadges() {
|
public static boolean displayDonorBadges() {
|
||||||
return getBoolean(DONOR_BADGES_DISPLAY, false);
|
return getBoolean(DONOR_BADGES_DISPLAY, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean cdsh() {
|
public static boolean cdsh() {
|
||||||
|
|||||||
Reference in New Issue
Block a user