Skip to content

Commit

Permalink
Handle all throwables when opening a relatively linked file
Browse files Browse the repository at this point in the history
  • Loading branch information
amake committed Oct 1, 2024
1 parent d7b5861 commit a0ff6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/pages/document/links.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ extension LinkHandler on DocumentPageState {
Navigator.pop(context);
return await loadDocument(context, resolved, target: link.extra);
}
} on Exception catch (e, s) {
} catch (e, s) {
logError(e, s);
if (mounted) {
Navigator.pop(context);
Expand Down

0 comments on commit a0ff6c0

Please sign in to comment.