mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* feat: account manager * remove dep * some fixes * migrate accounts * reimplement clearCookie
20 lines
392 B
Dart
20 lines
392 B
Dart
import 'package:PiliPlus/http/user.dart';
|
|
|
|
import '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']);
|
|
}
|
|
}
|
|
}
|