fix duplicate messages

This commit is contained in:
emerson 2022-02-02 12:55:43 -05:00
parent fbc933ac47
commit 5f2add147c

View file

@ -415,8 +415,9 @@ export class IRCUser {
client.sendMessage(sourceUser.getMask(), ircCommand, [targetChannel.name, msg], tags) client.sendMessage(sourceUser.getMask(), ircCommand, [targetChannel.name, msg], tags)
} }
} } else {
client.sendMessage(sourceUser.getMask(), ircCommand, [targetChannel.name, msg], tags) client.sendMessage(sourceUser.getMask(), ircCommand, [targetChannel.name, msg], tags)
}
}); });
} }
}); });