X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIHttpServer.ts;h=9e33302682533c68d39e9536cc878bd15a3b68c6;hb=7af183e79b63c60d72449a4eecb7e996927ec156;hp=186669ef83e96d42c2c2fed420f2153ba4a1bfff;hpb=1185579a331f3484e8ed7882203d2e58466635dd;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIHttpServer.ts b/src/charging-station/ui-server/UIHttpServer.ts index 186669ef..9e333026 100644 --- a/src/charging-station/ui-server/UIHttpServer.ts +++ b/src/charging-station/ui-server/UIHttpServer.ts @@ -13,7 +13,7 @@ import { ResponseStatus, type UIServerConfiguration, } from '../../types'; -import { Utils, logger } from '../../utils'; +import { Constants, Utils, logger } from '../../utils'; import { AbstractUIServer, UIServerUtils } from '../internal'; const moduleName = 'UIHttpServer'; @@ -117,10 +117,14 @@ export class UIHttpServer extends AbstractUIServer { const body = JSON.parse(Buffer.concat(bodyBuffer).toString()) as RequestPayload; this.uiServices .get(version) - ?.requestHandler(this.buildProtocolRequest(uuid, procedureName, body ?? {})) - .catch(() => { - /* Error caught by AbstractUIService */ - }); + ?.requestHandler( + this.buildProtocolRequest( + uuid, + procedureName, + body ?? Constants.EMPTY_FREEZED_OBJECT + ) + ) + .catch(Constants.EMPTY_FUNCTION); }); } else { throw new BaseError(`Unsupported HTTP method: '${req.method}'`);