refactor(backend): 必要ないas anyを消去 (#10293)

This commit is contained in:
Kisaragi
2023-03-11 08:51:37 +09:00
committed by GitHub
parent 65b1524f92
commit 0ac1fc846b
5 changed files with 6 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ export class InboxProcessorService {
const activity = job.data.activity;
//#region Log
const info = Object.assign({}, activity) as any;
const info = Object.assign({}, activity);
delete info['@context'];
this.logger.debug(JSON.stringify(info, null, 2));
//#endregion