diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-10-13 20:32:02 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-10-13 20:32:02 +0900 |
| commit | 5229f5de4d9ef7cd75d32466d29d672193adaf45 (patch) | |
| tree | 735d17de0669e1538901fb157dfe9430d3dcb10b /packages/backend/src/core/SystemWebhookService.ts | |
| parent | feat: リモートサーバーのサーバー情報を収集しないオプ... (diff) | |
| download | sharkey-5229f5de4d9ef7cd75d32466d29d672193adaf45.tar.gz sharkey-5229f5de4d9ef7cd75d32466d29d672193adaf45.tar.bz2 sharkey-5229f5de4d9ef7cd75d32466d29d672193adaf45.zip | |
refactor(backend): remove unnecessary .then
Diffstat (limited to 'packages/backend/src/core/SystemWebhookService.ts')
| -rw-r--r-- | packages/backend/src/core/SystemWebhookService.ts | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/packages/backend/src/core/SystemWebhookService.ts b/packages/backend/src/core/SystemWebhookService.ts index bb7c6b8c0e..db6407dcb3 100644 --- a/packages/backend/src/core/SystemWebhookService.ts +++ b/packages/backend/src/core/SystemWebhookService.ts @@ -101,8 +101,7 @@ export class SystemWebhookService implements OnApplicationShutdown { .log(updater, 'createSystemWebhook', { systemWebhookId: webhook.id, webhook: webhook, - }) - .then(); + }); return webhook; } @@ -139,8 +138,7 @@ export class SystemWebhookService implements OnApplicationShutdown { systemWebhookId: beforeEntity.id, before: beforeEntity, after: afterEntity, - }) - .then(); + }); return afterEntity; } @@ -158,8 +156,7 @@ export class SystemWebhookService implements OnApplicationShutdown { .log(updater, 'deleteSystemWebhook', { systemWebhookId: webhook.id, webhook, - }) - .then(); + }); } /** |