Fixed error in Scrobbling resulting in all songs taking 3:55 minutes before scrobble (cause was that PlaylistEntry.length is no longer an int, but an NSNumber).
parent
dbfa0363de
commit
f4ba4f102a
|
@ -110,7 +110,7 @@ escapeForLastFM(NSString *string)
|
|||
escapeForLastFM([pe title]),
|
||||
escapeForLastFM([pe album]),
|
||||
@"", // TODO: MusicBrainz support
|
||||
(int)(pe.length),
|
||||
[[pe length] intValue],
|
||||
escapeForLastFM([[pe URL] path])
|
||||
]];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue