Skip to content

Commit a801aee

Browse files
committed
chore(lint): auto-lint source code
1 parent 1b8188d commit a801aee

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/util/webhookData.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,13 @@ export default class WebhookData {
374374
maxSize: 10,
375375
onBatch: (embeds) => {
376376
onWebhookSend(webhookBatchKey);
377-
logger.info('Posting webhook %s (guild=%s, time=%d, thread=%s)', this.webhook.webhookID, this.webhook.guildID, Date.now(), this.webhook.threadID ?? 'none');
377+
logger.info(
378+
'Posting webhook %s (guild=%s, time=%d, thread=%s)',
379+
this.webhook.webhookID,
380+
this.webhook.guildID,
381+
Date.now(),
382+
this.webhook.threadID ?? 'none'
383+
);
378384
return this._send(embeds);
379385
}
380386
});
@@ -388,7 +394,13 @@ export default class WebhookData {
388394
maxSize: 10,
389395
onBatch: (embeds) => {
390396
onWebhookSend(webhookBatchKey);
391-
logger.info('Posting webhook %s (guild=%s, time=%d, thread=%s)', this.webhook.webhookID, this.webhook.guildID, Date.now(), this.webhook.threadID ?? 'none');
397+
logger.info(
398+
'Posting webhook %s (guild=%s, time=%d, thread=%s)',
399+
this.webhook.webhookID,
400+
this.webhook.guildID,
401+
Date.now(),
402+
this.webhook.threadID ?? 'none'
403+
);
392404
return this._send(embeds);
393405
}
394406
});

0 commit comments

Comments
 (0)