Fix wrong default "marked unread" value
This led to the suggested rooms for the current space section having an marked as unread badge. Change-Id: Ifcba015cfc740ceacb8ceeb5e85727aec7e55aae
This commit is contained in:
parent
c5709543ef
commit
4cfab03f8b
|
@ -38,7 +38,7 @@ class SectionHeaderAdapter constructor(
|
||||||
val isHidden: Boolean = true,
|
val isHidden: Boolean = true,
|
||||||
// SC additions
|
// SC additions
|
||||||
val unread: Int = 0,
|
val unread: Int = 0,
|
||||||
val markedUnread: Boolean = true,
|
val markedUnread: Boolean = false,
|
||||||
|
|
||||||
// This will be false until real data has been submitted once
|
// This will be false until real data has been submitted once
|
||||||
val isLoading: Boolean = true
|
val isLoading: Boolean = true
|
||||||
|
|
Loading…
Reference in New Issue