修复播放记录面板不显示当前集数

This commit is contained in:
mtvpls
2026-05-17 00:47:59 +08:00
parent 85f30322d3
commit 90fe293b06
+3 -1
View File
@@ -1053,7 +1053,9 @@ const VideoCard = forwardRef<VideoCardHandle, VideoCardProps>(function VideoCard
return false; return false;
}} }}
> >
{actualEpisodes} {currentEpisode !== undefined && currentEpisode !== null
? `${currentEpisode}/${actualEpisodes}`
: `${actualEpisodes}`}
</div> </div>
{/* 年份显示 */} {/* 年份显示 */}