Skip to content

Commit

Permalink
Fix #252 by catching all errors on configurator latest version check
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelspiss committed Oct 15, 2023
1 parent 604ff48 commit 798303d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ Future printVersionNotice(String repositoryName) async {
print(yellow(
'A pre-release version ($primaryPreRelease) of font_awesome_flutter is available. Should you encounter any problems, have a look if it fixes them.'));
}
} on FormatException catch (_) {
} catch (_) {
print(red(
'Error while getting font awesome flutter\'s version information. Could not determine whether you are using the latest version.'));
} finally {
Expand Down

0 comments on commit 798303d

Please sign in to comment.