Skip to content

Commit

Permalink
chore: stringify last message to maintain same format
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwaller committed Dec 6, 2024
1 parent bad158b commit 461727b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wsConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ async function main() {
ws.send(
JSON.stringify({
channel: redisChannel,
data: lastMessage,
data: JSON.stringify(lastMessage),
})
);
}
Expand Down

0 comments on commit 461727b

Please sign in to comment.