added hot 100

Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
Matt Bruce 2017-04-12 18:58:03 -05:00
parent e40d840f62
commit cb19c1cbaa

View File

@ -34,7 +34,7 @@ namespace BillboardPlaylistUpdater
else
songList = new List<SongList>();
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)
{