This reverts commit fa00ef92ef
.
This commit is contained in:
parent
ec97d8417f
commit
dfe9e4fccb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue