From d9e35d47a92ab7be2b03cf0621df89eefb4594fd Mon Sep 17 00:00:00 2001 From: Francois Cartegnie Date: Thu, 28 Sep 2017 15:53:47 +0200 Subject: [PATCH] webservices: acoustid: move to https --- modules/misc/webservices/acoustid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/misc/webservices/acoustid.c b/modules/misc/webservices/acoustid.c index 11dabbb16d..e867327233 100644 --- a/modules/misc/webservices/acoustid.c +++ b/modules/misc/webservices/acoustid.c @@ -155,7 +155,7 @@ int DoAcoustIdWebRequest( vlc_object_t *p_obj, acoustid_fingerprint_t *p_data ) if ( !p_data->psz_fingerprint ) return VLC_SUCCESS; char *psz_url; - if( unlikely(asprintf( &psz_url, "http://fingerprint.videolan.org/" + if( unlikely(asprintf( &psz_url, "https://fingerprint.videolan.org/" "acoustid.php?meta=recordings+tracks+usermeta+" "releases&duration=%d&fingerprint=%s", p_data->i_duration, p_data->psz_fingerprint ) < 1 ) ) -- 2.11.4.GIT