Skip to content

Commit

Permalink
Merge branch 'public/7.7' into public/7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mherger committed Oct 16, 2019
2 parents 8a9e9fb + 97f303a commit 5368636
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
10 changes: 5 additions & 5 deletions HTML/EN/html/docs/cli-api.html
Original file line number Diff line number Diff line change
Expand Up @@ -8636,7 +8636,7 @@ <h3 id="PG">
<strong><code><a href="#radios">apps</a></code></strong>
</li>
<li>
<strong><a href="#XMLBrowser">Live Music Archive, Live365, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS</a></strong>
<strong><a href="#XMLBrowser">Live Music Archive, MP3tunes, Pandora, Podcasts, RadioTime, Napster, Shoutcast, Staff Picks, RSS</a></strong>
</li>
<li>
<strong><a href="#Favorites">Favorites</a></strong>
Expand Down Expand Up @@ -8721,7 +8721,7 @@ <h3 id="PG">
&nbsp;&nbsp;<b>cmd</b>
</td>
<td>
Command, one of &quot;lma&quot;, &quot;live365&quot;, &quot;mp3tunes&quot;,
Command, one of &quot;lma&quot;, &quot;mp3tunes&quot;,
&quot;pandora&quot;, &quot;podcast&quot;,
&quot;radiotime&quot;, &quot;rhapsodydirect&quot;, &quot;shoutcast&quot;, &quot;
or &quot;picks&quot;, or any other, additionally installed radio or music service
Expand Down Expand Up @@ -8784,13 +8784,13 @@ <h3 id="PG">

<br>
<h3 id="XMLBrowser">
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
</h3>
<p>
<strong>
<code>
&lt;playerid&gt;
&lt;lma|live365|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss&gt;
&lt;lma|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss&gt;
items
&lt;start&gt;
&lt;itemsPerResponse&gt;
Expand Down Expand Up @@ -8983,7 +8983,7 @@ <h3 id="XMLBrowser">
<strong>
<code>
&lt;playerid&gt;
&lt;lma|live365|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss&gt;
&lt;lma|mp3tunes|pandora|podcast|radiotime|rhapsodydirect|shoutcast|picks|rss&gt;
playlist
&lt;play|load|insert|add&gt;
&lt;taggedParameters&gt;
Expand Down
1 change: 0 additions & 1 deletion Slim/Control/XMLBrowser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
};

Expand Down
4 changes: 0 additions & 4 deletions Slim/Music/Info.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
2 changes: 1 addition & 1 deletion Slim/Networking/SqueezeNetwork/Stats.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5368636

Please sign in to comment.