From def2a8bbaa83361851a574a8486fa440e314e0a6 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Tue, 3 May 2022 09:05:37 -0500 Subject: [PATCH] add logging --- Tesses.YouTubeDownloader/SavedVideo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tesses.YouTubeDownloader/SavedVideo.cs b/Tesses.YouTubeDownloader/SavedVideo.cs index 8ff307a..c0b4fd8 100644 --- a/Tesses.YouTubeDownloader/SavedVideo.cs +++ b/Tesses.YouTubeDownloader/SavedVideo.cs @@ -86,7 +86,7 @@ namespace Tesses.YouTubeDownloader Id=video.Id; Title = video.Title; AuthorChannelId = video.Author.ChannelId; - AuthorTitle = video.Author.Title; + AuthorTitle = video.Author.ChannelTitle; Description = video.Description; Keywords=video.Keywords.ToArray(); Likes=video.Engagement.LikeCount; @@ -259,7 +259,7 @@ namespace Tesses.YouTubeDownloader { Title = playlist.Title; AuthorChannelId = playlist.Author.ChannelId; - AuthorTitle=playlist.Author.Title; + AuthorTitle=playlist.Author.ChannelTitle; Description =playlist.Description; Id=playlist.Id; Videos = videos.Select((e)=>{return e.Id;}).ToList();