Skip to content

Commit

Permalink
Fixed bug where Discord Comment objects weren't encoded properly
Browse files Browse the repository at this point in the history
  • Loading branch information
HoshiKurama committed Mar 5, 2023
1 parent c7878f3 commit 58b703e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Comment(
) : DiscordNotification {
override fun encode(): ByteArray = createByteArrayMessage {
writeUTF(DiscordNotification.Type.COMMENT.toString())
writeUTF(user.name)
writeUTF(user.toString())
writeUTF(ticketID)
writeUTF(comment)
}
Expand Down

0 comments on commit 58b703e

Please sign in to comment.