Oosp, i'm dumb.

This commit is contained in:
Anonymous Raccoon
2018-11-01 14:40:40 +01:00
parent 99ee14ea2f
commit fd6ee2fa82
@@ -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();