mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-24 10:51:27 +01:00
Do not show stories for inactive groups.
This commit is contained in:
@@ -877,6 +877,10 @@ public class Recipient {
|
||||
return Stream.of(getParticipantIds()).anyMatch(p -> p.equals(selfId));
|
||||
}
|
||||
|
||||
public boolean isInactiveGroup() {
|
||||
return isGroup() && !isActiveGroup();
|
||||
}
|
||||
|
||||
public @NonNull List<RecipientId> getParticipantIds() {
|
||||
return new ArrayList<>(participantIds);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user