Skip to content

Commit

Permalink
Merge pull request #1464 from julien4215/fix-broadcast-uri
Browse files Browse the repository at this point in the history
Support relative uri reference in broadcast markdown description
  • Loading branch information
veloce authored Feb 19, 2025
2 parents 461df37 + 50ffda8 commit ddc08c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/view/broadcast/broadcast_overview_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class BroadcastOverviewTab extends ConsumerWidget {
data: description,
onTapLink: (text, url, title) {
if (url == null) return;
launchUrl(Uri.parse(url));
launchUrl(Uri.https('lichess.org').resolve(url));
},
),
],
Expand Down

0 comments on commit ddc08c2

Please sign in to comment.