From fd6ee2fa8248e586e025aa9abbcf53490e0b864e Mon Sep 17 00:00:00 2001 From: Anonymous Raccoon <32224410+AnonymusRaccoon@users.noreply.github.com> Date: Thu, 1 Nov 2018 14:40:40 +0100 Subject: [PATCH] Oosp, i'm dumb. --- MusicApp/Resources/Portable Class/Downloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MusicApp/Resources/Portable Class/Downloader.cs b/MusicApp/Resources/Portable Class/Downloader.cs index 361613f..0747f83 100644 --- a/MusicApp/Resources/Portable Class/Downloader.cs +++ b/MusicApp/Resources/Portable Class/Downloader.cs @@ -118,7 +118,7 @@ namespace MusicApp.Resources.Portable_Class string title = videoInfo.Title; foreach(char c in Path.GetInvalidFileNameChars()) //Make the title a valid filename (remove /, \, : etc). { - title.Replace(c, ' '); + title = title.Replace(c, ' '); } string fileExtension = streamInfo.Container.GetFileExtension();