Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-27 20:54:41 +08:00
parent 25acf3a9bb
commit b51c646415
227 changed files with 768 additions and 764 deletions

View File

@@ -34,7 +34,7 @@ class HistoryBaseController extends GetxController {
onPressed: () async {
Get.back();
SmartDialog.showLoading(msg: '请求中');
var res = await UserHttp.clearHistory(account: account);
final res = await UserHttp.clearHistory(account: account);
SmartDialog.dismiss();
if (res.isSuccess) {
SmartDialog.showToast('清空观看历史');
@@ -71,7 +71,7 @@ class HistoryBaseController extends GetxController {
TextButton(
onPressed: () async {
SmartDialog.showLoading(msg: '请求中');
var res = await UserHttp.pauseHistory(
final res = await UserHttp.pauseHistory(
pauseStatus,
account: account,
);