Pause checks for GV1 migration when checking for capability downgrades.

This commit is contained in:
Jon Chambers
2020-11-16 17:55:32 -05:00
committed by Jon Chambers
parent 66d3e1b551
commit e7745db36e
2 changed files with 2 additions and 4 deletions

View File

@@ -234,10 +234,6 @@ public class DeviceController {
private boolean isCapabilityDowngrade(Account account, DeviceCapabilities capabilities, String userAgent) {
boolean isDowngrade = false;
if (account.isGv1MigrationSupported() && !capabilities.isGv1Migration()) {
isDowngrade = true;
}
if (account.isGroupsV2Supported()) {
try {
switch (UserAgentUtil.parseUserAgentString(userAgent).getPlatform()) {