opt: 代码优化

This commit is contained in:
orz12
2024-01-15 00:59:19 +08:00
parent 0cc25203b1
commit 6654094480
5 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ class HtmlHttp {
Match match = regex.firstMatch(response.data)!;
String matchedString = match.group(0)!;
response = await Request().get(
'https:$matchedString' + '/',
'https:$matchedString/',
extra: {'ua': 'pc'},
);
}