syncing all room power levels
This commit is contained in:
parent
a8fab062a4
commit
f0ff89161a
2 changed files with 7 additions and 4 deletions
|
@ -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 = {}
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
// @ts-check
|
||||
|
||||
const fs = require("fs")
|
||||
const assert = require("assert").strict
|
||||
const yaml = require("js-yaml")
|
||||
|
||||
/** @ts-ignore @type {import("../types").AppServiceRegistrationConfig} */
|
||||
const reg = yaml.load(fs.readFileSync("registration.yaml", "utf8"))
|
||||
module.exports = reg
|
||||
assert(reg.ooye.max_file_size)
|
||||
assert(reg.ooye.namespace_prefix)
|
||||
assert(reg.ooye.server_name)
|
||||
module.exports = reg
|
||||
|
|
Loading…
Reference in a new issue