diff --git a/SongCrawler/Program.cs b/SongCrawler/Program.cs index 4fbe701..16bff0a 100644 --- a/SongCrawler/Program.cs +++ b/SongCrawler/Program.cs @@ -86,7 +86,8 @@ namespace SongCrawler FireSharp.FirebaseClient client = new FireSharp.FirebaseClient(config); string firepath = string.Format("controllers/{0}/songs", controller); Console.WriteLine("Loading current library"); - List songs = client.Get(firepath).ResultAs>(); + Dictionary dict = client.Get(firepath).ResultAs>(); + List songs = dict.Values.ToList(); if (songs != null) Console.WriteLine(string.Format("{0} songs loaded", songs.Count)); else