RoomViewController: The unread messages label is displayed whereas the bubbles table is not visible yet

This commit is contained in:
Giom Foret
2017-06-08 16:27:19 +02:00
parent 3ad94887f8
commit ac3d0e0680
+1 -1
View File
@@ -2996,7 +2996,7 @@
{
// Show "scroll to bottom" icon when the most recent message is not visible,
// or when the timelime is not live (this icon is used to go back to live).
if (!self.roomDataSource.isLive || [self isBubblesTableScrollViewAtTheBottom] == NO)
if (!self.roomDataSource.isLive || (!self.bubblesTableView.isHidden && [self isBubblesTableScrollViewAtTheBottom] == NO))
{
// Retrieve the unread messages count
NSUInteger unreadCount = self.roomDataSource.room.summary.localUnreadEventCount;