Fixed being able to swipe update headers

This commit is contained in:
Jay 2020-05-21 15:46:13 -04:00
parent 3455e36a33
commit 88ceefecf3

View File

@ -26,6 +26,10 @@ class DateItem(val date: Date, val addedString: Boolean = false) : AbstractHeade
holder.bind(this)
}
override fun isSwipeable(): Boolean {
return false
}
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other is DateItem) {