fix: 修复房间状态行在未发送时不更新的问题
This commit is contained in:
2
bls-register-backend/dist/index.js
vendored
2
bls-register-backend/dist/index.js
vendored
@@ -743,7 +743,7 @@ const buildRowsFromPayload = (rawPayload) => {
|
||||
};
|
||||
return {
|
||||
registerRows: [registerRow],
|
||||
roomStatusRows: [roomStatusUpdateRow]
|
||||
roomStatusRows: registerRow.is_send === 0 ? [roomStatusUpdateRow] : []
|
||||
};
|
||||
};
|
||||
const parseMessageToRows = (message) => {
|
||||
|
||||
Reference in New Issue
Block a user