1
0
forked from baron/baron-sso

style(userfront): format dart files to fix ci pipeline

This commit is contained in:
2026-04-10 16:00:37 +09:00
parent a96ef3d204
commit f33f023b90
2 changed files with 9 additions and 13 deletions

View File

@@ -1072,7 +1072,8 @@ class AuthProxyService {
}
} catch (e) {
// Fallback if the body isn't valid JSON (e.g., an HTML error page)
errorMessage = 'Server error (${response.statusCode}): ${response.body.isNotEmpty ? response.body.substring(0, response.body.length > 100 ? 100 : response.body.length) : "Unknown error"}';
errorMessage =
'Server error (${response.statusCode}): ${response.body.isNotEmpty ? response.body.substring(0, response.body.length > 100 ? 100 : response.body.length) : "Unknown error"}';
}
throw Exception(errorMessage);
}