diff --git a/src/controllers/CommandController.ts b/src/controllers/CommandController.ts index 55f40896..6116b453 100644 --- a/src/controllers/CommandController.ts +++ b/src/controllers/CommandController.ts @@ -4320,7 +4320,8 @@ export class CommandController extends Controller { ].filter(Boolean); organizeName = names.join(" "); } - await PostRetireToExprofile( + + PostRetireToExprofile( profile.citizenId ?? "", profile.prefix ?? "", profile.firstName ?? "", diff --git a/src/controllers/ExRetirementController.ts b/src/controllers/ExRetirementController.ts index c64ccdeb..c17a232b 100644 --- a/src/controllers/ExRetirementController.ts +++ b/src/controllers/ExRetirementController.ts @@ -225,6 +225,19 @@ export async function PostRetireToExprofile( }, }); + // addLogSequence(request, { + // action: "request", + // status: "success", + // description: "connected", + // request: { + // method: "POST", + // url: url, + // payload: JSON.stringify(sendData), + // response: JSON.stringify(response.data.result), + // }, + // }); + + return res.data; } catch (error: any) { if (error.response?.status === 500 && retryCount < maxRetries - 1) {