qconrad / intellistar-emulator

A web application that displays weather information in the same visual presentation as the cable headend unit Intellistar.
https://qconrad.github.io/intellistar-emulator/
MIT License
90 stars 71 forks source link

Upgrade insecure API Requests #3

Closed amdorj closed 6 years ago

amdorj commented 6 years ago

When serving the emulator over HTTPS Chrome would display a Mixed Content Error (i.e. "Load scripts from unauthenticated sources") because the API requests (in WeatherFetching.js) were over HTTP. Also, some images were requested over HTTP via the API (in InformationSetting.js), resulting in a Mixed Content Warning (i.e. "Site not fully secure"). 6 instances of API requests using 'http:' were replaced with 'https:'. You can test the changes I made at https://jamdor-server.me:8443

Thanks for the awesome project, amdorj