diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/storage/Account.java b/service/src/main/java/org/whispersystems/textsecuregcm/storage/Account.java index cea68157a..371991810 100644 --- a/service/src/main/java/org/whispersystems/textsecuregcm/storage/Account.java +++ b/service/src/main/java/org/whispersystems/textsecuregcm/storage/Account.java @@ -142,7 +142,7 @@ public class Account implements Principal { public boolean isGroupsV2Supported() { return devices.stream() .filter(Device::isEnabled) - .allMatch(device -> device.getCapabilities() != null && device.getCapabilities().isGv2()); + .anyMatch(device -> device.getCapabilities() != null && device.getCapabilities().isGv2()); } public boolean isStorageSupported() {