mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 04:25:55 +01:00
fix: upgrade script
This commit is contained in:
@@ -33,7 +33,7 @@ module.exports = {
|
|||||||
const arrayOfRoomData = await db.getObjects(roomIds.map(roomId => `chat:room:${roomId}`));
|
const arrayOfRoomData = await db.getObjects(roomIds.map(roomId => `chat:room:${roomId}`));
|
||||||
for (const roomData of arrayOfRoomData) {
|
for (const roomData of arrayOfRoomData) {
|
||||||
if (roomData) {
|
if (roomData) {
|
||||||
const midsSeen = Object.create(null);
|
const midsSeen = {};
|
||||||
const { roomId } = roomData;
|
const { roomId } = roomData;
|
||||||
await batch.processSortedSet(`chat:room:${roomId}:uids`, async (uids) => {
|
await batch.processSortedSet(`chat:room:${roomId}:uids`, async (uids) => {
|
||||||
for (const uid of uids) {
|
for (const uid of uids) {
|
||||||
|
|||||||
Reference in New Issue
Block a user