syncing all room power levels

This commit is contained in:
Cadence Ember 2023-08-24 00:27:51 +12:00
parent a8fab062a4
commit f0ff89161a
2 changed files with 7 additions and 4 deletions

View file

@ -63,9 +63,8 @@ async function channelToKState(channel, guild) {
assert.ok(typeof spaceID === "string")
const row = db.prepare("SELECT nick, custom_avatar FROM channel_room WHERE channel_id = ?").get(channel.id)
assert(row)
const customName = row.nick
const customAvatar = row.custom_avatar
const customName = row?.nick
const customAvatar = row?.custom_avatar
const [convertedName, convertedTopic] = convertNameAndTopic(channel, guild, customName)
const avatarEventContent = {}