🐛 Fix user did not refresh since login

This commit is contained in:
LittleSheep 2025-04-03 00:25:32 +08:00
parent f311c1898c
commit ed1b75bacf

View File

@ -40,6 +40,7 @@ class UnauthorizedHint extends StatelessWidget {
GoRouter.of(context).pushNamed('authLogin').then((value) {
if (value == true && context.mounted) {
final ua = context.read<UserProvider>();
ua.refreshUser();
context.showSnackbar('loginSuccess'.tr(args: [
'@${ua.user?.name} (${ua.user?.nick})',
]));