From a8bdb8706568aa2c36d031b31665200c92ff1558 Mon Sep 17 00:00:00 2001 From: Nero Date: Wed, 23 Sep 2020 12:29:23 +0200 Subject: [PATCH] http to https for weather API --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index d525be9..f3b07d4 100644 --- a/app.js +++ b/app.js @@ -531,7 +531,7 @@ let kara = new Vue({ } let city = this.location.toLowerCase(); - let url = 'http://api.openweathermap.org/data/2.5/weather?q=' + city + '&appid=8a1aa336da8899c1038bf6bd808d8961&units=metric'; + let url = 'https://api.openweathermap.org/data/2.5/weather?q=' + city + '&appid=8a1aa336da8899c1038bf6bd808d8961&units=metric'; axios.get(url) .then(function (response) {