mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-11-20 12:56:31 +00:00
close #1661
This commit is contained in:
parent
eba0951176
commit
8717c8587e
1 changed files with 2 additions and 1 deletions
|
|
@ -208,7 +208,8 @@ class UserSearchFragment : Fragment() {
|
|||
if (childCount == 0) return null
|
||||
for (i in childCount - 1 downTo 0) {
|
||||
val child = binding.group.getChildAt(i) ?: continue
|
||||
val tag = child.tag as RankedRecipient
|
||||
val tempTag = child.tag ?: continue
|
||||
val tag = tempTag as RankedRecipient
|
||||
if (isUser && tag.user == null || !isUser && tag.thread == null) continue
|
||||
if (isUser && tag.user?.pk == recipient.user?.pk || !isUser && tag.thread?.threadId == recipient.thread?.threadId) {
|
||||
return child
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue