[Slim-Checkins] r10589 - in /branches/6.5/server: Changelog6.html
Slim/Control/Commands.pm
andy at svn.slimdevices.com
andy at svn.slimdevices.com
Sat Nov 4 12:33:14 PST 2006
Author: andy
Date: Sat Nov 4 12:33:13 2006
New Revision: 10589
URL: http://svn.slimdevices.com?rev=10589&view=rev
Log:
Bug 4467, only show 'Connecting' message for Play
Modified:
branches/6.5/server/Changelog6.html
branches/6.5/server/Slim/Control/Commands.pm
Modified: branches/6.5/server/Changelog6.html
URL: http://svn.slimdevices.com/branches/6.5/server/Changelog6.html?rev=10589&r1=10588&r2=10589&view=diff
==============================================================================
--- branches/6.5/server/Changelog6.html (original)
+++ branches/6.5/server/Changelog6.html Sat Nov 4 12:33:13 2006
@@ -114,6 +114,7 @@
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4447">#4447</a> - lowercase tooltips</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4450">#4450</a> - With the Nokia770 skin, the genre hyperlink on the track info page doesn't filter by genre</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4457">#4457</a> - Nokia770 song info page doesn't delimit multiple artists with a comma</li>
+ <li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4467">#4467</a> - Add for remote radio streams displays "Connecting" for long time</li>
</ul>
</ul>
Modified: branches/6.5/server/Slim/Control/Commands.pm
URL: http://svn.slimdevices.com/branches/6.5/server/Slim/Control/Commands.pm?rev=10589&r1=10588&r2=10589&view=diff
==============================================================================
--- branches/6.5/server/Slim/Control/Commands.pm (original)
+++ branches/6.5/server/Slim/Control/Commands.pm Sat Nov 4 12:33:13 2006
@@ -937,7 +937,7 @@
} else {
# Display some feedback for the player on remote URLs
- if ( Slim::Music::Info::isRemoteURL($path) && !Slim::Music::Info::isDigitalInput($path)) {
+ if ( $cmd eq 'play' && Slim::Music::Info::isRemoteURL($path) && !Slim::Music::Info::isDigitalInput($path) ) {
my $line1 = $client->string('NOW_PLAYING') . ' (' . $client->string('CHECKING_STREAM') . ')';
my $line2 = Slim::Music::Info::title($path) || $path;
if ( $client->linesPerScreen() == 1 ) {
More information about the checkins
mailing list