From e112a8589420b4bcaf3bb1e93cce81e2d0860958 Mon Sep 17 00:00:00 2001 From: guozhigq Date: Mon, 11 Nov 2024 22:24:37 +0800 Subject: [PATCH] opt: request method --- lib/http/common.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/common.dart b/lib/http/common.dart index 454a355a..2f5f0e84 100644 --- a/lib/http/common.dart +++ b/lib/http/common.dart @@ -18,7 +18,7 @@ class CommonHttp { } static Future querySkipSegments({required String bvid}) async { - var res = await Request().get(Api.getSkipSegments, data: { + var res = await Request().getWithoutCookie(Api.getSkipSegments, data: { 'videoID': bvid, }); if (res.data is List && res.data.isNotEmpty) {