[Slim-Checkins] r11358 - in /branches/6.5/server: Changelog6.html Slim/Music/Info.pm

andy at svn.slimdevices.com andy at svn.slimdevices.com
Wed Feb 7 07:40:52 PST 2007


Author: andy
Date: Wed Feb  7 07:40:52 2007
New Revision: 11358

URL: http://svn.slimdevices.com?rev=11358&view=rev
Log:
Bug 4525, allow URL schemes with capital letters to be seen as remote

Modified:
    branches/6.5/server/Changelog6.html
    branches/6.5/server/Slim/Music/Info.pm

Modified: branches/6.5/server/Changelog6.html
URL: http://svn.slimdevices.com/branches/6.5/server/Changelog6.html?rev=11358&r1=11357&r2=11358&view=diff
==============================================================================
--- branches/6.5/server/Changelog6.html (original)
+++ branches/6.5/server/Changelog6.html Wed Feb  7 07:40:52 2007
@@ -13,6 +13,7 @@
 	<ul>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4203">#4203</a> - alac crashes</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4517">#4517</a> - Crash on loading remote.html link</li>
+		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4525">#4525</a> - Podcast-xml with enclosing url starting with &quot;Http&quot; instead of &quot;http&quot; fails to play</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4714">#4714</a> - DNS handling does not raise error if dns name is invalid</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4724">#4724</a> - Random Play (items not added in random order)</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4728">#4728</a> - Alarm Volumes inc-/decreases in steps of 2 or 3</li>

Modified: branches/6.5/server/Slim/Music/Info.pm
URL: http://svn.slimdevices.com/branches/6.5/server/Slim/Music/Info.pm?rev=11358&r1=11357&r2=11358&view=diff
==============================================================================
--- branches/6.5/server/Slim/Music/Info.pm (original)
+++ branches/6.5/server/Slim/Music/Info.pm Wed Feb  7 07:40:52 2007
@@ -810,7 +810,7 @@
 sub isRemoteURL {
 	my $url = shift || return 0;
 
-	if ($url =~ /^([a-zA-Z0-9\-]+):/ && Slim::Player::ProtocolHandlers->isValidHandler($1)) {
+	if ($url =~ /^([a-zA-Z0-9\-]+):/ && Slim::Player::ProtocolHandlers->isValidHandler( lc($1) )) {
 
 		return 1;
 	}



More information about the checkins mailing list