]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix the query URL for IMDB website. (#1327)
authorMathieu Gouin <mgouin@gmail.com>
Thu, 14 May 2020 14:34:26 +0000 (10:34 -0400)
committerGitHub <noreply@github.com>
Thu, 14 May 2020 14:34:26 +0000 (16:34 +0200)
src/webui/static/app/epg.js

index f80624e9c05515f5dda16a418b735481029f40c2..c034a33428c13017c220bef01efed1b1924fe2d9 100644 (file)
@@ -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';