diff --git a/lib/utils/storage.dart b/lib/utils/storage.dart index a3c365bc7..e2f0e9ffe 100644 --- a/lib/utils/storage.dart +++ b/lib/utils/storage.dart @@ -148,8 +148,8 @@ class GStorage { static bool get showArgueMsg => setting.get(SettingBoxKey.showArgueMsg, defaultValue: true); - static List get dynamicDetailRatio => - setting.get(SettingBoxKey.dynamicDetailRatio, defaultValue: [60.0, 40.0]); + static List get dynamicDetailRatio => List.from(setting + .get(SettingBoxKey.dynamicDetailRatio, defaultValue: [60.0, 40.0])); static List get blackMidsList => List.from(GStorage.localCache .get(LocalCacheKey.blackMidsList, defaultValue: []));