Skip to content

Commit

Permalink
fixup! TF-2965 Add retry capability for OIDC check request
Browse files Browse the repository at this point in the history
  • Loading branch information
tddang-linagora committed Sep 16, 2024
1 parent 4bdeb9c commit 892c38c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class LoginMessageWidget extends StatelessWidget {
} else if (failure is GetTokenOIDCFailure && failure.exception is NoSuitableBrowserForOIDCException) {
return AppLocalizations.of(context).noSuitableBrowserForOIDC;
} else if (failure is FeatureFailure) {
if (failure.exception is ConnectionError) {
if (failure.exception is NoNetworkError) {
return AppLocalizations.of(context).youAreOffline;
}

Expand Down

0 comments on commit 892c38c

Please sign in to comment.