Dark theme, navigation
This commit is contained in:
@@ -91,7 +91,7 @@ namespace FoxTube.Pages
|
||||
|
||||
list.Clear();
|
||||
foreach (PlaylistItem i in response.Items)
|
||||
list.Add(new VideoCard(i.ContentDetails.VideoId));
|
||||
list.Add(new VideoCard(i.ContentDetails.VideoId, playlistId));
|
||||
|
||||
while (response.NextPageToken != null)
|
||||
{
|
||||
@@ -99,7 +99,7 @@ namespace FoxTube.Pages
|
||||
response = await listRequest.ExecuteAsync();
|
||||
|
||||
foreach (PlaylistItem i in response.Items)
|
||||
list.Add(new VideoCard(i.ContentDetails.VideoId));
|
||||
list.Add(new VideoCard(i.ContentDetails.VideoId, playlistId));
|
||||
}
|
||||
|
||||
loading.Close();
|
||||
|
||||
Reference in New Issue
Block a user