feat: pugv (#927)

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
dom
2025-08-03 15:25:29 +08:00
committed by GitHub
parent cf835e330b
commit bd3d6cf34c
33 changed files with 596 additions and 421 deletions

View File

@@ -367,7 +367,12 @@ class _EpisodePanelState extends CommonSlidePageState<EpisodePanel> {
bvid = item.bvid;
title = item.showTitle ?? item.title!;
cover = item.cover;
duration = item.duration == null ? null : item.duration! ~/ 1000;
if (item.from == 'pugv') {
duration = item.duration;
view = item.play;
} else {
duration = item.duration == null ? null : item.duration! ~/ 1000;
}
pubdate = item.pubTime;
break;
}