fixed bug in the url

Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
Matt Bruce 2016-07-24 14:17:54 -05:00
parent 116f67ec74
commit 60271802b0

View File

@ -114,7 +114,7 @@ namespace TestSelector
song.Id = new Random().Next(0, 50000);
song.Title = tag.Tag.Title;
song.Artist = tag.Tag.Performers[0];
song.Path = file.FullName.Replace(@"D:\KaraokeData\", @"Z:\");
song.Path = file.FullName.Replace(@"D:\KaraokeData\Karaoke\", @"Z:\");
controller.AddSongToQueue(song);
}