Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/d7cb5090fcab0206d5214ff47bed145433c16784 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Twitter oAuth callback URL

pull/1963/head
Mark McDowall 8 years ago
parent 416e9abca5
commit d7cb5090fc
No known key found for this signature in database
GPG Key ID: D4CEFA9A718052E0

@ -91,8 +91,9 @@ var view = Marionette.ItemView.extend({
this.ui.indicator.show();
var self = this;
var callbackUrl = window.location.origin + window.NzbDrone.UrlBase + '/oauth.html';
var promise = this.model.requestAction('startOAuth', { callbackUrl: window.location.origin + '/oauth.html' })
var promise = this.model.requestAction('startOAuth', { callbackUrl: callbackUrl })
.then(function(response) {
return self._showOAuthWindow(response.oauthUrl);
})
@ -137,4 +138,4 @@ AsModelBoundView.call(view);
AsValidatedView.call(view);
AsEditModalView.call(view);
module.exports = view;
module.exports = view;

Loading…
Cancel
Save