Compare commits

..

No commits in common. "0d398be60acd2ef0008f822fd8ecdce3dc4b06a0" and "1dcd5620c43a6bd1767aa4eae6c55f8abb4ca813" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

@ -245,7 +245,7 @@ async function syncUser(user, member, channel, guild, roomID, interactionMetadat
async function _sendSyncUser(roomID, mxid, content, powerLevel, options) {
const currentHash = _hashProfileContent(content, powerLevel ?? 0)
const existingHash = select("sim_member", "hashed_profile_content", {room_id: roomID, mxid}).safeIntegers().pluck().get()
// console.log(roomID, mxid, existingHash, currentHash)
console.log(roomID, mxid, existingHash, currentHash)
// only do the actual sync if the hash has changed since we last looked
const hashHasChanged = existingHash !== currentHash
// always okay to add new data. for overwriting, restrict based on options.allowOverwrite, if present

View file

@ -14,10 +14,6 @@ const sync = new HeatSync({watchFunction: fs.watchFile})
Object.assign(passthrough, {sync, db})
const orm = sync.require("./src/db/orm")
passthrough.from = orm.from
passthrough.select = orm.select
const DiscordClient = require("./src/d2m/discord-client")
const discord = new DiscordClient(reg.ooye.discord_token)
@ -26,6 +22,10 @@ passthrough.discord = discord
const {as} = require("./src/matrix/appservice")
passthrough.as = as
const orm = sync.require("./src/db/orm")
passthrough.from = orm.from
passthrough.select = orm.select
const power = require("./src/matrix/power.js")
sync.require("./src/m2d/event-dispatcher")