From d294af0fd26e1874be6612fc36c12096c645c044 Mon Sep 17 00:00:00 2001 From: Walker Waylon Scott Date: Tue, 25 Jul 2017 08:37:03 -0500 Subject: [PATCH] moved to https connection to the omdbapi --- src/static/js/enthusiast.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/enthusiast.js b/src/static/js/enthusiast.js index 70665a6..25c8686 100644 --- a/src/static/js/enthusiast.js +++ b/src/static/js/enthusiast.js @@ -280,7 +280,7 @@ function update_top_movies(start_year, end_year) tm = JSON.parse(top_movies.responseJSON) h = '' for (title in tm['gross']) { - var info = $.get('http://www.omdbapi.com/?t=' + title + '&apikey=90424a9e') + var info = $.get('https://www.omdbapi.com/?t=' + title + '&apikey=90424a9e') promises.push(info) } $.when.apply(null, promises).done(function(){