diff --git a/src/d2m/actions/register-user.js b/src/d2m/actions/register-user.js index bd10d5e..3427bbd 100644 --- a/src/d2m/actions/register-user.js +++ b/src/d2m/actions/register-user.js @@ -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 diff --git a/start.js b/start.js index 51942c6..2ab79cb 100755 --- a/start.js +++ b/start.js @@ -14,6 +14,10 @@ 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) @@ -22,10 +26,6 @@ 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")