diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_mms.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/input/input_mms.c b/src/input/input_mms.c index 3822d87e6..a323e9d1c 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -82,11 +82,13 @@ static int mms_plugin_open (input_plugin_t *this_gen, char *mrl) { mms_input_plugin_t *this = (mms_input_plugin_t *) this_gen; - error_id=asx_parse(mrl,&nmrl); - - if(error_id) - return 0; + if (strncmp (mrl, "mms://", 6)) { + error_id=asx_parse(mrl,&nmrl); + if(error_id) + return 0; + } + if(!nmrl) nmrl=mrl; |