[Slim-Checkins] r10153 - /trunk/server/Slim/Formats/Playlists/PLS.pm
andy at svn.slimdevices.com
andy at svn.slimdevices.com
Tue Oct 3 11:28:03 PDT 2006
Author: andy
Date: Tue Oct 3 11:28:02 2006
New Revision: 10153
URL: http://svn.slimdevices.com?rev=10153&view=rev
Log:
Fix bug where pls playlists were parsed as a single line
Modified:
trunk/server/Slim/Formats/Playlists/PLS.pm
Modified: trunk/server/Slim/Formats/Playlists/PLS.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Formats/Playlists/PLS.pm?rev=10153&r1=10152&r2=10153&view=diff
==============================================================================
--- trunk/server/Slim/Formats/Playlists/PLS.pm (original)
+++ trunk/server/Slim/Formats/Playlists/PLS.pm Tue Oct 3 11:28:02 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