Merge pull request #472 from TeamNewPipe/fix-media-ccc-de

Fix name of media.ccc.de service
This commit is contained in:
Tobias Groza
2020-12-02 22:16:52 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ The following sites are currently supported:
- YouTube
- SoundCloud
- MediaCCC
- media.ccc.de
- PeerTube (no P2P)
## License

View File

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