Fix displaying the external url of the link tag

This commit is contained in:
dab246
2022-04-14 11:19:47 +07:00
committed by Dat H. Pham
parent 701502c6b7
commit 561f8041ea
25 changed files with 182 additions and 299 deletions
@@ -21,4 +21,13 @@ class HtmlDataSourceImpl extends HtmlDataSource {
throw error;
});
}
@override
Future<EmailContent> addTooltipWhenHoverOnLink(EmailContent emailContent) {
return Future.sync(() async {
return await _htmlAnalyzer.addTooltipWhenHoverOnLink(emailContent);
}).catchError((error) {
throw error;
});
}
}