diff --git a/BillboardPlaylistUpdater/Program.cs b/BillboardPlaylistUpdater/Program.cs index 78ba6e9..0f78257 100644 --- a/BillboardPlaylistUpdater/Program.cs +++ b/BillboardPlaylistUpdater/Program.cs @@ -34,7 +34,7 @@ namespace BillboardPlaylistUpdater else songList = new List(); - + SongList hot100 = Download("Hot 100", "http://www.billboard.com/charts/hot-100"); SongList pop = Download("Pop-Songs","http://www.billboard.com/charts/pop-songs"); SongList rock = Download("Rock-Songs","http://www.billboard.com/charts/rock-songs"); SongList country = Download("Country-Songs", "http://www.billboard.com/charts/country-songs"); @@ -45,6 +45,7 @@ namespace BillboardPlaylistUpdater localSongList.Add(rock); localSongList.Add(country); localSongList.Add(hiphop); + localSongList.Add(hot100); foreach (SongList sl in localSongList) {