-Fixed reversed order of inputs on playlist info.

This commit is contained in:
John Zhen Mo 2018-01-03 16:42:55 -08:00
parent f40447fa40
commit 32dbb3d2df

View File

@ -48,7 +48,7 @@ public class PlaylistInfo extends ListInfo {
String url = extractor.getCleanUrl();
String id = extractor.getId();
String name = extractor.getName();
PlaylistInfo info = new PlaylistInfo(serviceId, url, id, name);
PlaylistInfo info = new PlaylistInfo(serviceId, id, url, name);
try {
info.setStreamCount(extractor.getStreamCount());