diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index 7ed2e1a57..f055b3649 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -436,16 +436,11 @@ class RoomActionsView extends React.Component { const { navigation, leaveRoom } = this.props; try { - const db = database.active; - const subCollection = db.get('subscriptions'); - const rooms = await subCollection.query( - Q.where('team_id', Q.eq(room.teamId)), - Q.where('team_main', Q.notEq(true)) - ); + const result = await RocketChat.teamListRoomsOfUser({ teamId: room.teamId, userId: room.u._id }); - if (rooms.length) { - const teamChannels = rooms.map(r => ({ - rid: r.id, + if (result.rooms?.length) { + const teamChannels = result.rooms.map(r => ({ + rid: r._id, name: r.name, teamId: r.teamId, alert: r.isLastOwner