stream names may not contain dots

This commit is contained in:
Christian Schabesberger 2018-12-23 22:31:38 +01:00
parent 50a17afc05
commit 73232a7bad
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ import static org.schabi.newpipe.extractor.StreamingService.ServiceInfo.MediaCap
public class MediaCCCService extends StreamingService {
public MediaCCCService(int id) {
super(id, "Media.CCC", asList(AUDIO, VIDEO));
super(id, "MediaCCC", asList(AUDIO, VIDEO));
}
@Override