1
0
forked from baron/baron-sso

style: format dart files to pass formatting check

This commit is contained in:
2026-04-28 13:03:29 +09:00
parent ff7a786c21
commit e3f9bbf925
2 changed files with 10 additions and 6 deletions

View File

@@ -86,11 +86,15 @@ Future<void> _silentSessionRecovery() async {
useCookie: false, useCookie: false,
); );
if (status == 401 || status == 403) { if (status == 401 || status == 403) {
_log.warning("[SessionRecovery] Local token is invalid. Clearing store."); _log.warning(
"[SessionRecovery] Local token is invalid. Clearing store.",
);
AuthTokenStore.clear(); AuthTokenStore.clear();
return; return;
} }
_log.info("[SessionRecovery] Local token is valid. Skipping cookie check."); _log.info(
"[SessionRecovery] Local token is valid. Skipping cookie check.",
);
return; return;
} catch (e) { } catch (e) {
_log.info("[SessionRecovery] Failed to verify local token: $e"); _log.info("[SessionRecovery] Failed to verify local token: $e");