diff --git a/HTML/EN/html/docs/cli-api.html b/HTML/EN/html/docs/cli-api.html index 24d7665c08b..dd5a418ff3e 100644 --- a/HTML/EN/html/docs/cli-api.html +++ b/HTML/EN/html/docs/cli-api.html @@ -8636,7 +8636,7 @@

apps
  • - Live Music Archive, Live365, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS + Live Music Archive, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS
  • Favorites @@ -8721,7 +8721,7 @@

      cmd - Command, one of "lma", "live365", "mp3tunes", + Command, one of "lma", "mp3tunes", "pandora", "podcast", "radiotime", "rhapsodydirect", "shoutcast", " or "picks", or any other, additionally installed radio or music service @@ -8784,13 +8784,13 @@


    - Live Music Archive, Live365, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS + Live Music Archive, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS

    <playerid> - <lma|live365|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss> + <lma|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss> items <start> <itemsPerResponse> @@ -8983,7 +8983,7 @@

    <playerid> - <lma|live365|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss> + <lma|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss> playlist <play|load|insert|add> <taggedParameters> diff --git a/Slim/Control/XMLBrowser.pm b/Slim/Control/XMLBrowser.pm index 5c637d21823..85e23556755 100644 --- a/Slim/Control/XMLBrowser.pm +++ b/Slim/Control/XMLBrowser.pm @@ -1435,7 +1435,6 @@ sub _cliQuery_done { mp3tunes => 'PLUGIN_MP3TUNES_MODULE_NAME', radiotime => 'PLUGIN_RADIOTIME_MODULE_NAME', slacker => 'PLUGIN_SLACKER_MODULE_NAME', - live365 => 'PLUGIN_LIVE365_MODULE_NAME', lma => 'PLUGIN_LMA_MODULE_NAME', }; diff --git a/Slim/Music/Info.pm b/Slim/Music/Info.pm index 534e6a42c25..50dacac1b4e 100644 --- a/Slim/Music/Info.pm +++ b/Slim/Music/Info.pm @@ -1487,10 +1487,6 @@ sub typeFromPath { } elsif ($fullpath =~ /^([a-z]+:)/ && defined($suffixes{$1})) { $type = $suffixes{$1}; - } - elsif ( $fullpath =~ /^(?:live365)/ ) { - # Force mp3 for protocol handlers - return 'mp3'; } else { diff --git a/Slim/Networking/SqueezeNetwork/Stats.pm b/Slim/Networking/SqueezeNetwork/Stats.pm index 9445e589ca3..15650f3b5b7 100644 --- a/Slim/Networking/SqueezeNetwork/Stats.pm +++ b/Slim/Networking/SqueezeNetwork/Stats.pm @@ -19,7 +19,7 @@ my $log = logger('network.squeezenetwork'); my $prefs = preferences('server'); # Regex for which URLs we want to report stats for -my $REPORT_RE = qr{^(?:http|mms|live365|loop)://}; +my $REPORT_RE = qr{^(?:http|mms|loop)://}; # Report stats to SN at this interval my $REPORT_INTERVAL = 1200;