From 9d1a386e8016a6800568fe3d450ac3ef99f02888 Mon Sep 17 00:00:00 2001 From: Richasy Date: Sun, 29 Sep 2024 14:46:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=92=AD=E6=94=BE=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=97=A0=E6=B3=95=E7=82=B9=E5=87=BB=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/VideoPlayerPlaylistSectionDetailViewModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Desktop/BiliCopilot.UI/ViewModels/Components/VideoPlayerPlaylistSectionDetailViewModel.cs b/src/Desktop/BiliCopilot.UI/ViewModels/Components/VideoPlayerPlaylistSectionDetailViewModel.cs index 93ba8c73..c7428fbb 100644 --- a/src/Desktop/BiliCopilot.UI/ViewModels/Components/VideoPlayerPlaylistSectionDetailViewModel.cs +++ b/src/Desktop/BiliCopilot.UI/ViewModels/Components/VideoPlayerPlaylistSectionDetailViewModel.cs @@ -33,6 +33,7 @@ public VideoPlayerPlaylistSectionDetailViewModel( string videoId) { _videoId = videoId; + Page = page; Items = list.Select(p => new VideoItemViewModel(p, VideoCardStyle.PlayerPlaylist)).ToList(); SelectedItem = Items.FirstOrDefault(p => p.Data.Identifier.Id == _videoId); }