mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 02:37:30 +00:00
close #1661
This commit is contained in:
parent
eba0951176
commit
8717c8587e
@ -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…
Reference in New Issue
Block a user