Merge remote-tracking branch 'origin/master' into dev

This commit is contained in:
墨大叔 2024-09-26 16:30:28 +08:00
commit d39a4a4171

View File

@ -61,6 +61,6 @@ public enum ModelTag {
public static boolean isTwoMac(List<String> tags) {
// 双模
List<String> towMacTags = asList(FOUR_G, WIFI);
return new HashSet<>(towMacTags).containsAll(tags);
return new HashSet<>(tags).containsAll(towMacTags);
}
}