diff --git a/lib/pages/setting/widgets/model.dart b/lib/pages/setting/widgets/model.dart index 3b88b6e0..33d4fa73 100644 --- a/lib/pages/setting/widgets/model.dart +++ b/lib/pages/setting/widgets/model.dart @@ -642,7 +642,7 @@ List get playSettings => [ subtitle: '展示同时在看人数', leading: Icon(Icons.people_outlined), setKey: SettingBoxKey.enableOnlineTotal, - defaultVal: true, + defaultVal: false, ), SettingsModel( settingsType: SettingsType.normal, @@ -1636,7 +1636,7 @@ List get extraSettings => [ subtitle: '视频详情页开启AI总结', leading: Icon(Icons.engineering_outlined), setKey: SettingBoxKey.enableAi, - defaultVal: true, + defaultVal: false, ), SettingsModel( settingsType: SettingsType.sw1tch, diff --git a/lib/pages/video/detail/introduction/controller.dart b/lib/pages/video/detail/introduction/controller.dart index 5680dc51..7fad037d 100644 --- a/lib/pages/video/detail/introduction/controller.dart +++ b/lib/pages/video/detail/introduction/controller.dart @@ -121,7 +121,7 @@ class VideoIntroController extends GetxController userLogin = userInfo != null; lastPlayCid.value = int.parse(Get.parameters['cid']!); isShowOnlineTotal = GStorage.setting - .get(SettingBoxKey.enableOnlineTotal, defaultValue: true); + .get(SettingBoxKey.enableOnlineTotal, defaultValue: false); startTimer(); queryVideoIntro(); } diff --git a/lib/pages/video/detail/introduction/view.dart b/lib/pages/video/detail/introduction/view.dart index 534f9678..8d1d6cfe 100644 --- a/lib/pages/video/detail/introduction/view.dart +++ b/lib/pages/video/detail/introduction/view.dart @@ -152,7 +152,8 @@ class _VideoInfoState extends State with TickerProviderStateMixin { videoDetailCtr = Get.find(tag: widget.heroTag); videoItem = videoIntroController.videoItem!; - enableAi = GStorage.setting.get(SettingBoxKey.enableAi, defaultValue: true); + enableAi = + GStorage.setting.get(SettingBoxKey.enableAi, defaultValue: false); if (videoIntroController.expandableCtr == null) { bool alwaysExapndIntroPanel = GStorage.alwaysExapndIntroPanel;