Fixed bug that prevented playlists from being navigated to

This commit is contained in:
Isaac Abadi
2020-09-18 03:37:09 -04:00
parent d0782bb444
commit ae8f7a2a33

View File

@@ -50,7 +50,8 @@ export class CustomPlaylistsComponent implements OnInit {
});
}
goToPlaylist(playlist) {
goToPlaylist(info_obj) {
const playlist = info_obj.file;
const playlistID = playlist.id;
const type = playlist.type;