No point in this

This commit is contained in:
2026-02-01 22:39:15 -07:00
parent 65a9574d47
commit fed1dfaa24

View File

@@ -269,7 +269,7 @@ app.ws('/ws', {
fillerMessage: {
username: userInfo[0].username,
userId: chat.userId,
content: chat.content,
content: atob(chat.content),
id: chat.id,
icon: savedata?.bird?.icon ?? 1,
overlay: savedata?.bird?.overlay ?? 0,
@@ -360,7 +360,7 @@ app.ws('/ws', {
data: {
username: userInfo[0].username,
userId,
content: btoa(message.data.content as string),
content: message.data.content as string,
id: insert[0].insertId,
icon: savedata?.bird?.icon ?? 1,
overlay: savedata?.bird?.overlay ?? 0,
@@ -437,7 +437,7 @@ app.ws('/ws', {
mapped.push({
username: userInfo[0].username,
userId: chat.userId,
content: chat.content,
content: atob(chat.content),
id: chat.id,
icon: savedata?.bird?.icon ?? 1,
overlay: savedata?.bird?.overlay ?? 0,