Skip to content
Snippets Groups Projects
Commit 95f211fd authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Steve Lhomme
Browse files

playlist: Allow podcast module to be forced

parent 3cf6cbb3
No related branches found
No related tags found
1 merge request!2073playlist: Allow podcast module to be forced
Pipeline #231818 passed with stage
in 14 minutes and 30 seconds
......@@ -48,7 +48,8 @@ int Import_podcast( vlc_object_t *p_this )
stream_t *p_demux = (stream_t *)p_this;
if( stream_IsMimeType( p_demux->s, "text/xml" )
|| stream_IsMimeType( p_demux->s, "application/xml" ) )
|| stream_IsMimeType( p_demux->s, "application/xml" )
|| p_this->force )
{
/* XML: check if the root node is "rss". Use a specific peeked
* probestream in order to not modify the source state while probing.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment