*Set the updated property to the current timestamp in cacheRequest

This commit is contained in:
Derrick Hammer 2022-08-28 23:01:47 -04:00
parent bd6c791675
commit afc49802b0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -179,6 +179,8 @@ export class RPCServer {
private cacheRequest(request: RPCRequest, response: RPCResponse): void {
const reqId = RPCServer.getRequestId(request);
response.updated = Date.now();
this.processedRequests.set(reqId, response);
}