Compare commits

..

No commits in common. "f3b0d01400caaf5dcda28bcf75463fa79e8d53a9" and "85269ea1530a0cc8af0e0ccd0c9507ff6ff31b7c" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View file

@ -42,7 +42,6 @@ function encodeEmoji(input, shortcode) {
"%E2%9D%93", // ❓ "%E2%9D%93", // ❓
"%F0%9F%8F%86", // 🏆️ "%F0%9F%8F%86", // 🏆️
"%F0%9F%93%9A", // 📚️ "%F0%9F%93%9A", // 📚️
"%F0%9F%90%9F", // 🐟️
] ]
discordPreferredEncoding = discordPreferredEncoding =

View file

@ -57,7 +57,7 @@ as.router.post("/api/link", defineEventHandler(async event => {
db.prepare("INSERT INTO channel_room (channel_id, room_id, name, guild_id) VALUES (?, ?, ?, ?)").run(parsedBody.discord, parsedBody.matrix, channel.name, guildID) db.prepare("INSERT INTO channel_room (channel_id, room_id, name, guild_id) VALUES (?, ?, ?, ?)").run(parsedBody.discord, parsedBody.matrix, channel.name, guildID)
// Sync room data and space child // Sync room data and space child
await createRoom.syncRoom(parsedBody.discord) createRoom.syncRoom(parsedBody.discord)
return null // 204 return null // 204
})) }))