vlc/vlc-1.1 | branch: master | John Freed <[email protected]> | Thu Mar 29 20:32:23 2012 +0200| [15498f88bb659dba22b454b3f3e48904fabdda9d] | committer: Jean-Baptiste Kempf
Correct erroneous entry; ART_URL needs to return ArtURL, not GetEncodedBy Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=15498f88bb659dba22b454b3f3e48904fabdda9d --- modules/control/http/rpn.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/control/http/rpn.c b/modules/control/http/rpn.c index 320a4ff..1ae9c2c 100644 --- a/modules/control/http/rpn.c +++ b/modules/control/http/rpn.c @@ -1043,7 +1043,7 @@ void EvaluateRPN( intf_thread_t *p_intf, mvar_t *vars, } else if( !strcmp( psz_meta, "ART_URL" ) ) { - psz_val = input_item_GetEncodedBy( p_item ); + psz_val = input_item_GetArtURL( p_item ); } else if( !strcmp( psz_meta, "TRACK_ID" ) ) { _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
