diff options
| author | Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> | 2023-03-11 08:51:37 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-11 08:51:37 +0900 |
| commit | 0ac1fc846b01c544c0185e4c33012b95463452b6 (patch) | |
| tree | ddedfed55deba16c43d3944c28d723912136f97b /packages/backend/src/queue/processors/InboxProcessorService.ts | |
| parent | enhance(client): 付箋ウィジェットの高さを設定可能に (diff) | |
| download | sharkey-0ac1fc846b01c544c0185e4c33012b95463452b6.tar.gz sharkey-0ac1fc846b01c544c0185e4c33012b95463452b6.tar.bz2 sharkey-0ac1fc846b01c544c0185e4c33012b95463452b6.zip | |
refactor(backend): 必要ないas anyを消去 (#10293)
Diffstat (limited to 'packages/backend/src/queue/processors/InboxProcessorService.ts')
| -rw-r--r-- | packages/backend/src/queue/processors/InboxProcessorService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/queue/processors/InboxProcessorService.ts b/packages/backend/src/queue/processors/InboxProcessorService.ts index 33d6f4eafa..41fe06b7c3 100644 --- a/packages/backend/src/queue/processors/InboxProcessorService.ts +++ b/packages/backend/src/queue/processors/InboxProcessorService.ts @@ -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 |