diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 247923d43..524ef653a 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -365,11 +365,13 @@ class RoomView extends React.Component { const subCollection = await db.collections.get('subscriptions'); const room = await subCollection.find(rid); this.setState({ room }); - navigation.setParams({ - name: this.getRoomTitle(room), - avatar: room.name, - t: room.t - }); + if (!this.tmid) { + navigation.setParams({ + name: this.getRoomTitle(room), + avatar: room.name, + t: room.t + }); + } this.observeRoom(room); } catch (error) { if (this.t !== 'd') {