Skip to content

Commit

Permalink
Use HTTPS for change log (which HTTP redirected to anyway)
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Roman committed Jun 4, 2018
1 parent 1083985 commit 4d8d492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/global/update.js
Expand Up @@ -231,7 +231,7 @@ var Update = {

fetchChangeLog: function (displayVersion) {
return CustomPromise(function (resolve, reject) {
$.get('http://jsblocker.toggleable.com/change-log/' + displayVersion.replace(/\./g, ''))
$.get('https://jsblocker.toggleable.com/change-log/' + displayVersion.replace(/\./g, ''))
.done(function (responseText, textStatus, request) {
if (textStatus === 'success')
resolve($('article .post-content', responseText));
Expand Down

0 comments on commit 4d8d492

Please sign in to comment.