Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HitomaruKonpaku committed Nov 29, 2024
1 parent 3e9d065 commit 2b97fa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/Webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class Webhook {
content = [
config.message,
content,
].filter(v => v).map((v) => v.trim()).join('\n')
].filter((v) => v).map((v) => v.trim()).join('\n')

// Build embed
const embed = {
Expand Down Expand Up @@ -170,7 +170,7 @@ export class Webhook {
config.message,
content,
YouTubeUtil.getVideoUrl(videoId),
].filter(v => v).map((v) => v.trim()).join('\n')
].filter((v) => v).map((v) => v.trim()).join('\n')

// Build request payload
const payload = { content }
Expand Down

0 comments on commit 2b97fa7

Please sign in to comment.