Skip to content

Commit

Permalink
fix(webhook): Fixed description placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
4drian3d committed Nov 28, 2023
1 parent 6d58b1b commit 0c60bb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fun sendWebHook(plugin: ClientCatcher, replacer: Replacer, config: Configuration
Embed.Field(it.inline, replacer.replace(it.name), replacer.replace(it.value))
})
.title(replacer.replace(embedConfig.title))
.description(embedConfig.description).build()
.description(replacer.replace(embedConfig.description)).build()
)
builder.build()
}.thenCompose { client.sendWebHook(it) }
Expand Down

0 comments on commit 0c60bb1

Please sign in to comment.