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

CQTexperiment
areff 2008-03-09 16:19:14 +00:00
parent dbfa0363de
commit f4ba4f102a
1 changed files with 1 additions and 1 deletions

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