Using this library recently, I realised I was unable to search for YouTube playlists at all, even using the deprecated method getVideosFromPage with onlyVideos = false and checking the return type to see if it is SearchPlaylist. These changes allow playlists to be properly parsed, along with getting their thumbnails. Note however that playlists can still only be fetched using getVideosFromPage as getVideos filters the results to only SearchVideos.
Using this library recently, I realised I was unable to search for YouTube playlists at all, even using the deprecated method
getVideosFromPage
withonlyVideos = false
and checking the return type to see if it isSearchPlaylist
. These changes allow playlists to be properly parsed, along with getting their thumbnails. Note however that playlists can still only be fetched usinggetVideosFromPage
asgetVideos
filters the results to onlySearchVideo
s.