Skip to content

Commit

Permalink
Merge pull request #7004 from gitstart/K9-OSS-18
Browse files Browse the repository at this point in the history
Message view: Account chip not displayed when viewing messages in a thread (from Unified Inbox)
  • Loading branch information
cketti committed Jul 11, 2023
2 parents f12ae16 + 1911580 commit b0e05ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1100,6 +1100,7 @@ open class MessageList :
showMessageViewPlaceHolder()

val tmpSearch = LocalSearch().apply {
setId(search?.id)
addAccountUuid(account.uuid)
and(SearchField.THREAD_ID, threadRootId.toString(), SearchSpecification.Attribute.EQUALS)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class MessageListFragment :
}

val isShowAccountChip: Boolean
get() = !isSingleAccountMode
get() = isUnifiedInbox || !isSingleAccountMode

override fun onAttach(context: Context) {
super.onAttach(context)
Expand Down

0 comments on commit b0e05ca

Please sign in to comment.