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:
parent
dbfa0363de
commit
f4ba4f102a
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ escapeForLastFM(NSString *string)
|
||||||
escapeForLastFM([pe title]),
|
escapeForLastFM([pe title]),
|
||||||
escapeForLastFM([pe album]),
|
escapeForLastFM([pe album]),
|
||||||
@"", // TODO: MusicBrainz support
|
@"", // TODO: MusicBrainz support
|
||||||
(int)(pe.length),
|
[[pe length] intValue],
|
||||||
escapeForLastFM([[pe URL] path])
|
escapeForLastFM([[pe URL] path])
|
||||||
]];
|
]];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue