mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 11:36:24 +01:00
fix error thrown during request when response code is not used
This commit is contained in:
parent
0a225292f0
commit
9755062563
@ -27,8 +27,8 @@ class Request implements IHomeServerRequest {
|
|||||||
public readonly args: any[];
|
public readonly args: any[];
|
||||||
private responseResolve: (result: any) => void;
|
private responseResolve: (result: any) => void;
|
||||||
public responseReject: (error: Error) => void;
|
public responseReject: (error: Error) => void;
|
||||||
private responseCodeResolve: (result: any) => void;
|
private responseCodeResolve?: (result: any) => void;
|
||||||
private responseCodeReject: (result: any) => void;
|
private responseCodeReject?: (result: any) => void;
|
||||||
private _requestResult?: IHomeServerRequest;
|
private _requestResult?: IHomeServerRequest;
|
||||||
private readonly _responsePromise: Promise<any>;
|
private readonly _responsePromise: Promise<any>;
|
||||||
private _responseCodePromise: Promise<any>;
|
private _responseCodePromise: Promise<any>;
|
||||||
@ -73,7 +73,7 @@ class Request implements IHomeServerRequest {
|
|||||||
const response = await this._requestResult?.response();
|
const response = await this._requestResult?.response();
|
||||||
this.responseResolve(response);
|
this.responseResolve(response);
|
||||||
const responseCode = await this._requestResult?.responseCode();
|
const responseCode = await this._requestResult?.responseCode();
|
||||||
this.responseCodeResolve(responseCode);
|
this.responseCodeResolve?.(responseCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
get requestResult() {
|
get requestResult() {
|
||||||
|
Loading…
Reference in New Issue
Block a user