Fixed: Frontend OAuth Actions (Plex Auth)

This commit is contained in:
Qstick 2019-03-14 22:16:18 -04:00
parent 36f34a4113
commit c58c64c9e3
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ function showOAuthWindow(url, payload) {
}
function executeIntermediateRequest(payload, ajaxOptions) {
return createAjaxRequest(ajaxOptions).then((data) => {
return createAjaxRequest(ajaxOptions).request.then((data) => {
return requestAction({
action: 'continueOAuth',
queryParams: {
@ -98,7 +98,7 @@ function executeIntermediateRequest(payload, ajaxOptions) {
},
...payload
});
}).request;
});
}
//