From: Mathieu Gouin Date: Thu, 14 May 2020 14:34:26 +0000 (-0400) Subject: Fix the query URL for IMDB website. (#1327) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8a31e57a492be6628b685488fcc7f1d9d262679;p=thirdparty%2Ftvheadend.git Fix the query URL for IMDB website. (#1327) --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index f80624e9c..c034a3342 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -170,7 +170,7 @@ tvheadend.seachTitleWeb = function(index, title){ var url = ''; switch(index){ case 1: - url = 'http://akas.imdb.com/find?q=' + encodeURIComponent(title); + url = 'https://www.imdb.com/find?q=' + encodeURIComponent(title); break; case 2: url = 'https://www.thetvdb.com/search?q='+ encodeURIComponent(title)+'&l=en';