Redirecting new payments to same server.

This commit is contained in:
Samuel Clay 2021-03-25 16:24:57 -04:00
parent 57829d6a01
commit 6868d223b9
2 changed files with 3 additions and 3 deletions

View file

@ -42,9 +42,9 @@
},
homepage: function() {
window.location.href = 'http://' + NEWSBLUR.URLs.domain + '/';
window.location.href = '/';
}
};
})(jQuery);
})(jQuery);

View file

@ -466,7 +466,7 @@ _.extend(NEWSBLUR.ReaderFeedchooser.prototype, {
open_stripe_form: function() {
var renew = (this.options.renew ? "&renew=true" : "");
window.location.href = "https://" + NEWSBLUR.URLs.domain + "/profile/stripe_form?plan=" + this.plan + renew;
window.location.href = "/profile/stripe_form?plan=" + this.plan + renew;
},
choose_dollar_amount: function(plan) {