[banshee] PlsPlaylistFormat: Make parsing the header case-insensitive (bgo#648458)
- From: Bertrand Lorentz <blorentz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] PlsPlaylistFormat: Make parsing the header case-insensitive (bgo#648458)
- Date: Sun, 1 May 2011 16:30:58 +0000 (UTC)
commit ee18ec17130db88ac72c4854d973e93329211c6a
Author: Michael Martin-Smucker <mlmartin13 gmail com>
Date: Tue Apr 26 21:09:03 2011 -0400
PlsPlaylistFormat: Make parsing the header case-insensitive (bgo#648458)
Some .pls playlists could not be imported into Banshee because they use
a capital 'P' in the '[Playlist]' header. This patch lets Banshee read
these playlists by ignoring the case of that header.
Signed-off-by: Bertrand Lorentz <bertrand lorentz gmail com>
.../Banshee.Playlists.Formats/PlsPlaylistFormat.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.Playlists.Formats/PlsPlaylistFormat.cs b/src/Core/Banshee.Services/Banshee.Playlists.Formats/PlsPlaylistFormat.cs
index 46efa50..44ff9e9 100644
--- a/src/Core/Banshee.Services/Banshee.Playlists.Formats/PlsPlaylistFormat.cs
+++ b/src/Core/Banshee.Services/Banshee.Playlists.Formats/PlsPlaylistFormat.cs
@@ -60,7 +60,7 @@ namespace Banshee.Playlists.Formats
return false;
}
- return line.Trim() == "[playlist]";
+ return line.Trim().ToLower() == "[playlist]";
}
public PlsPlaylistFormat()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]