Skip to content

Commit

Permalink
MythFrontend: Allow playback of streamed http:// files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall committed May 27, 2011
1 parent b3c584b commit 1b1d0a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/programs/mythfrontend/main.cpp
Expand Up @@ -786,7 +786,8 @@ static int internal_play_media(const QString &mrl, const QString &plot,
QFile checkFile(mrl);
if ((!checkFile.exists() && !mrl.startsWith("dvd:")
&& !mrl.startsWith("bd:")
&& !mrl.startsWith("myth:")))
&& !mrl.startsWith("myth:")
&& !mrl.startsWith("http://")))
{
QString errorText = QObject::tr("Failed to open \n '%1' in %2 \n"
"Check if the video exists")
Expand Down

0 comments on commit 1b1d0a9

Please sign in to comment.