forked from mystiq/hydrogen-web
Temporary fix for 401 errors
This commit is contained in:
parent
d28ab919bb
commit
d76a059525
1 changed files with 4 additions and 1 deletions
|
@ -36,7 +36,10 @@ export class HomeServerRequest implements IHomeServerRequest {
|
|||
this._promise = sourceRequest.response().then(response => {
|
||||
log?.set("status", response.status);
|
||||
// ok?
|
||||
if (response.status >= 200 && response.status < 300) {
|
||||
// todo: register endpoint indicates our progress in using the user interactive
|
||||
// authentication using 401 responses
|
||||
// passing through all 401 responses as a temporary fix
|
||||
if (response.status >= 200 && response.status < 300 || response.status === 401) {
|
||||
log?.finish();
|
||||
return response.body;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue