mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-27 06:29:54 +00:00
Never display badges if they are not enabled via feature flag.
This commit is contained in:
@@ -432,7 +432,7 @@ public class Recipient {
|
||||
this.systemContactName = details.systemContactName;
|
||||
this.extras = details.extras;
|
||||
this.hasGroupsInCommon = details.hasGroupsInCommon;
|
||||
this.badges = details.badges;
|
||||
this.badges = FeatureFlags.donorBadges() ? details.badges : Collections.emptyList();
|
||||
}
|
||||
|
||||
public @NonNull RecipientId getId() {
|
||||
|
||||
Reference in New Issue
Block a user