mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
mod: tweaks opt: publish page Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
20 lines
415 B
Dart
20 lines
415 B
Dart
import 'package:PiliPlus/http/user.dart';
|
|
|
|
import 'package:PiliPlus/utils/storage.dart';
|
|
|
|
class Data {
|
|
static Future init() async {
|
|
await historyStatus();
|
|
}
|
|
|
|
static Future historyStatus() async {
|
|
if (!Accounts.main.isLogin) {
|
|
return;
|
|
}
|
|
var res = await UserHttp.historyStatus();
|
|
if (res['status']) {
|
|
GStorage.localCache.put(LocalCacheKey.historyPause, res['data']);
|
|
}
|
|
}
|
|
}
|