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).

This commit is contained in:
areff 2008-03-09 16:19:14 +00:00
parent dbfa0363de
commit f4ba4f102a

View file

@ -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])
]];
}