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