Index: Player/Protocols/HTTP.pm =================================================================== --- Player/Protocols/HTTP.pm (revision 32435) +++ Player/Protocols/HTTP.pm (working copy) @@ -277,10 +277,8 @@ } } - if ( main::SLIM_SERVICE ) { - # Strip noscan info from URL - $url =~ s/#slim:.+$//; - } + # Strip noscan info from URL + $url =~ s/#slim:.+$//; return $url; } Index: Player/Protocols/MMS.pm =================================================================== --- Player/Protocols/MMS.pm (revision 32435) +++ Player/Protocols/MMS.pm (working copy) @@ -107,10 +107,8 @@ } } - if ( main::SLIM_SERVICE ) { - # Strip noscan info from URL - $url =~ s/#slim:.+$//; - } + # Strip noscan info from URL + $url =~ s/#slim:.+$//; return $url; } Index: Utils/Scanner/Remote.pm =================================================================== --- Utils/Scanner/Remote.pm (revision 32435) +++ Utils/Scanner/Remote.pm (working copy) @@ -164,6 +164,9 @@ } } } + else { + $url =~ s/#slim:.+$//; + } if ( $isAudio ) { main::DEBUGLOG && $log->is_debug && $log->debug( "Remote stream $url known to be audio" );