mod: 评论区非正常地址判断

This commit is contained in:
guozhigq
2024-03-05 23:39:05 +08:00
parent 12e947ef84
commit d728b1fb6d
2 changed files with 19 additions and 10 deletions

View File

@ -642,6 +642,11 @@ InlineSpan buildContent(
} else {
final String redirectUrl =
await UrlUtils.parseRedirectUrl(matchStr);
if (redirectUrl == matchStr) {
Clipboard.setData(ClipboardData(text: matchStr));
SmartDialog.showToast('地址可能有误');
return;
}
final String pathSegment = Uri.parse(redirectUrl).path;
final String lastPathSegment =
pathSegment.split('/').last;