Private
Public Access
1
0

temp allow all urls as way to use more of youtube-dl supported sites.

This commit is contained in:
2019-04-09 21:21:53 -04:00
parent 02a9a30b41
commit 9af2175426

View File

@@ -145,7 +145,8 @@ bool MiniMediaPlayer::isValidMediaUrl(QUrl mediaUrl)
//TODO: check more than host?
return true;
}
return false;
//For now, allow all urls since worst case youtube-dl will just fail to add anything to playlist.
return true;
}
void MiniMediaPlayer::mediaStateChanged(QMediaPlayer::State state)