From 3450cf6e7fb05ced34b2a83183655f3704c2fa2c Mon Sep 17 00:00:00 2001 From: singerdmx Date: Fri, 25 Dec 2020 23:21:19 -0800 Subject: [PATCH] Update _launchUrl --- lib/widgets/editor.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index 83015607..94445b10 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -363,7 +363,8 @@ class _QuillEditorSelectionGestureDetectorBuilder } void _launchUrl(String url) async { - if (await canLaunch(url)) { + bool ok = await canLaunch(url); + if (ok) { await launch(url); } }