Merge pull request #6324 from thundernest/notify_on_moreMessages_change
Update the message list when the "more messages" value of a folder changes
This commit is contained in:
commit
e6a5a8d2ca
1 changed files with 5 additions and 0 deletions
|
@ -58,6 +58,11 @@ class NotifierMessageStore(
|
||||||
notifyChange()
|
notifyChange()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun setMoreMessages(folderId: Long, moreMessages: MoreMessages) {
|
||||||
|
messageStore.setMoreMessages(folderId, moreMessages)
|
||||||
|
notifyChange()
|
||||||
|
}
|
||||||
|
|
||||||
private fun notifyChange() {
|
private fun notifyChange() {
|
||||||
localStore.notifyChange()
|
localStore.notifyChange()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue