am d88404d0: Merge "Fix .pls playlist parsing" into jb-dev

* commit 'd88404d0a1991a13cce9d5e55e4314828839311d':
  Fix .pls playlist parsing
This commit is contained in:
Marco Nelissen
2012-05-17 09:55:16 -07:00
committed by Android Git Automerger

View File

@@ -1623,7 +1623,7 @@ public class MediaScanner
if (line.startsWith("File")) { if (line.startsWith("File")) {
int equals = line.indexOf('='); int equals = line.indexOf('=');
if (equals > 0) { if (equals > 0) {
cachePlaylistEntry(line, playListDirectory); cachePlaylistEntry(line.substring(equals + 1), playListDirectory);
} }
} }
line = reader.readLine(); line = reader.readLine();