Merge pull request #1665 from eclairevoyant/master

fix: hide "Show more" button when hiding comment replies
This commit is contained in:
Bnyro 2022-10-27 14:41:24 +02:00 committed by GitHub
commit 76b01a1812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,10 @@ class CommentsAdapter(
}
}
}
else -> repliesAdapter.clear()
else -> {
repliesAdapter.clear()
showMore.visibility = View.GONE
}
}
}
}