Skip to content

Commit

Permalink
修复网络请求参数名称BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
ggdream committed Mar 21, 2022
1 parent 41a39dd commit fb17316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/net/net.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Net extends GetConnect {
final url = 'https://www.bilibili.com/video/$bvid';
final html = await httpGet<String>(
url,
query: {'q': no.toString()},
query: {'p': no.toString()},
);
if (html == null) return null;

Expand Down

0 comments on commit fb17316

Please sign in to comment.