Skip to content

Commit

Permalink
fix: add uuid param to broadcast builder
Browse files Browse the repository at this point in the history
i forgot to :w NAHH
  • Loading branch information
vyneer committed Dec 2, 2024
1 parent 02e173c commit 1e73c77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/chat/js/messages/MessageBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export default class MessageBuilder {
return new ChatMessage(message, timestamp, MessageTypes.INFO);
}

static broadcast(message, user, timestamp = null) {
return new ChatBroadcastMessage(message, user, timestamp);
static broadcast(message, user, uuid, timestamp = null) {
return new ChatBroadcastMessage(message, user, uuid, timestamp);
}

static command(message, timestamp = null) {
Expand Down

0 comments on commit 1e73c77

Please sign in to comment.