Revert "Pause checks for GV1 migration when checking for capability downgrades."

This reverts commit e7745db36e.
This commit is contained in:
Jon Chambers
2020-11-17 09:25:20 -05:00
parent 34a11c2338
commit e551fd2c1b
2 changed files with 4 additions and 2 deletions

View File

@@ -235,6 +235,10 @@ 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()) {