rename a function

This commit is contained in:
Cadence Ember 2023-09-20 16:12:19 +12:00
parent 044ccc08e0
commit cd195f92e0
1 changed files with 4 additions and 4 deletions

View File

@ -119,7 +119,7 @@ async function memberToStateContent(user, member, guildID) {
return content
}
function calculateProfileEventContentHash(content) {
function hashProfileContent(content) {
return `${content.displayname}\u0000${content.avatar_url}`
}
@ -136,12 +136,12 @@ function calculateProfileEventContentHash(content) {
async function syncUser(user, member, guildID, roomID) {
const mxid = await ensureSimJoined(user, roomID)
const content = await memberToStateContent(user, member, guildID)
const profileEventContentHash = calculateProfileEventContentHash(content)
const currentHash = hashProfileContent(content)
const existingHash = select("sim_member", "profile_event_content_hash", "WHERE room_id = ? AND mxid = ?").pluck().get(roomID, mxid)
// only do the actual sync if the hash has changed since we last looked
if (existingHash !== profileEventContentHash) {
if (existingHash !== currentHash) {
await api.sendState(roomID, "m.room.member", mxid, content, mxid)
db.prepare("UPDATE sim_member SET profile_event_content_hash = ? WHERE room_id = ? AND mxid = ?").run(profileEventContentHash, roomID, mxid)
db.prepare("UPDATE sim_member SET profile_event_content_hash = ? WHERE room_id = ? AND mxid = ?").run(currentHash, roomID, mxid)
}
return mxid
}