mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
fixed a bug where mute reasons were not relayed to the user
This commit is contained in:
parent
0818b0479b
commit
24df1d827f
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ export class MutesPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
template &&
|
||||
(await renderTemplate(template, {
|
||||
guildName: this.guild.name,
|
||||
reason: reason || reason === "" ? "None" : reason,
|
||||
reason: !reason || reason === "" ? "None" : reason,
|
||||
time: timeUntilUnmute,
|
||||
}));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue