diff --git a/src/extension.js b/src/extension.js index 927c9c2..56113dd 100644 --- a/src/extension.js +++ b/src/extension.js @@ -1115,6 +1115,9 @@ class OpenweatherMenuButton extends PanelMenu.Button { if (_httpSession === undefined) { _httpSession = new Soup.Session(); _httpSession.user_agent = this.user_agent; + if (this._weather_provider == WeatherProvider.OPENWEATHERMAP) { + _httpSession.ssl_strict = false; + } } else { // abort previous requests. _httpSession.abort();