Item.GetArtist / Title deprecated?

Hi all,

We are trying to output the current playing artist and title via SystemLog, but it seems like Item.GetArtist and Title are not functioning anymore. mAirlist throws a Null Pointer Exception to the System Log. Are GetArtist and GetTitle deprecated or am I using it incorrectly?

[code]procedure OnPlayerStart(PlayerControl: IPlayerControl; Item: IPlaylistItem);
begin
SystemLog(Item.GetArtist);
end;

begin
end.[/code]

Kind regards,

Dennis

The parameter list for this function has changed over time - use this one:

procedure OnPlayerStart(PlaylistIndex: integer; PlayerIndex: integer; Item: IPlaylistItem);
begin
end;