Fixed: Twitter oAuth callback URL (#1669)

This commit is contained in:
Mitchell Cash 2017-06-13 16:42:07 +10:00 committed by Leonardo Galli
parent 3eab8248e6
commit 5c5f06a92c
1 changed files with 3 additions and 2 deletions

View File

@ -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;