[Slim-Checkins] r10152 - /branches/6.5/server/Slim/Formats/Playlists/PLS.pm

andy at svn.slimdevices.com andy at svn.slimdevices.com
Tue Oct 3 11:26:39 PDT 2006


Author: andy
Date: Tue Oct  3 11:26:38 2006
New Revision: 10152

URL: http://svn.slimdevices.com?rev=10152&view=rev
Log:
Fix bug where pls playlists were parsed as a single line

Modified:
    branches/6.5/server/Slim/Formats/Playlists/PLS.pm

Modified: branches/6.5/server/Slim/Formats/Playlists/PLS.pm
URL: http://svn.slimdevices.com/branches/6.5/server/Slim/Formats/Playlists/PLS.pm?rev=10152&r1=10151&r2=10152&view=diff
==============================================================================
--- branches/6.5/server/Slim/Formats/Playlists/PLS.pm (original)
+++ branches/6.5/server/Slim/Formats/Playlists/PLS.pm Tue Oct  3 11:26:38 2006
@@ -49,7 +49,7 @@
 	# Bug 4127, make sure we have proper line-endings
 	$data =~ s/\r\n?/\n/g;
 
-	for my $line (split(/$CRLF/, $data)) {
+	for my $line (split(/\n/, $data)) {
 
 		$::d_parse && msg("Parsing line: $line\n");
 



More information about the checkins mailing list