Return empty kiosk list instead of null

This commit is contained in:
Fynn Godau 2019-12-21 19:20:06 +01:00
parent a579337c9a
commit 43dc3c3d4c

View file

@ -77,7 +77,7 @@ public class BandcampService extends StreamingService {
@Override
public KioskList getKioskList() throws ExtractionException {
return null;
return new KioskList(this);
}
@Override