Copy, linking attachment RID

This commit is contained in:
2024-12-25 00:48:19 +08:00
parent 4d96a15c31
commit d4b831f98e
6 changed files with 211 additions and 188 deletions

View File

@ -31,9 +31,10 @@ class UserProvider extends ChangeNotifier {
final value = _config.prefs.getString(kAtkStoreKey);
isAuthorized = value != null;
notifyListeners();
refreshUser().then((value) {
refreshUser().then((value) async {
if (value != null) {
log('Logged in as @${value.name}');
log('Atk: ${await atk}');
}
});
}