precheck video dimension

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-04-23 17:08:51 +08:00
parent efc202c10f
commit 5b5983ed50
32 changed files with 237 additions and 81 deletions

View File

@@ -36,13 +36,15 @@ class SubVideoCardH extends StatelessWidget {
type: MaterialType.transparency,
child: InkWell(
onTap: () async {
int? cid = await SearchHttp.ab2c(bvid: videoItem.bvid);
final res = await SearchHttp.ab2cWithDimension(bvid: videoItem.bvid);
final cid = res?.cid;
if (cid != null) {
PageUtils.toVideoPage(
bvid: videoItem.bvid,
cid: cid,
cover: videoItem.cover,
title: videoItem.title,
dimension: res!.dimension,
);
}
},