From 76ae5a6f8f2a9da01cffbc828207fa85f075a19a Mon Sep 17 00:00:00 2001 From: hak8or Date: Sat, 3 Mar 2018 00:24:54 -0500 Subject: [PATCH] All tags added are now lower case --- YTManager/Tasks/FetchVideos.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YTManager/Tasks/FetchVideos.cs b/YTManager/Tasks/FetchVideos.cs index b7f79ad..99ad367 100644 --- a/YTManager/Tasks/FetchVideos.cs +++ b/YTManager/Tasks/FetchVideos.cs @@ -55,7 +55,7 @@ namespace YTManager.Tasks { if (contentdetail.Snippet.Tags == null) vid.Tags = new List(); else - vid.Tags = contentdetail.Snippet.Tags.Select(t => new Models.Tag { Name = t }).ToList(); + vid.Tags = contentdetail.Snippet.Tags.Select(t => new Models.Tag { Name = t.ToLower() }).ToList(); } // Send back the parsed vids.