[RoomList] Set hasName to false

This commit is contained in:
Christian Pauly 2019-07-23 15:10:38 +02:00
parent a38d43b167
commit a43f5048db

View file

@ -91,7 +91,9 @@ class RoomList {
membership: chatUpdate.membership, membership: chatUpdate.membership,
prev_batch: chatUpdate.prev_batch, prev_batch: chatUpdate.prev_batch,
highlightCount: chatUpdate.highlight_count, highlightCount: chatUpdate.highlight_count,
notificationCount: chatUpdate.notification_count); notificationCount: chatUpdate.notification_count,
hasName: false,
);
rooms.insert(position, newRoom); rooms.insert(position, newRoom);
if (onInsert != null) onInsert(position); if (onInsert != null) onInsert(position);
} }