diff options
Diffstat (limited to 'src/vdr-plugin/webvideo.c')
-rw-r--r-- | src/vdr-plugin/webvideo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 90e018a..002c58d 100644 --- a/src/vdr-plugin/webvideo.c +++ b/src/vdr-plugin/webvideo.c @@ -254,6 +254,8 @@ void cPluginWebvideo::HandleFinishedRequests(void) streamurl = req->GetResponse(); if (streamurl[0] == '\0') Skins.Message(mtError, tr("Streaming failed: no URL")); + else if (strncmp(streamurl, "wvt://", 6) == 0) + Skins.Message(mtError, tr("Streaming not supported, try downloading")); else if (!StartStreaming(streamurl)) Skins.Message(mtError, tr("Failed to launch media player")); break; |