Skip to content

Commit

Permalink
checking if skills filter is applied or not
Browse files Browse the repository at this point in the history
  • Loading branch information
ritvij14 committed Oct 18, 2020
1 parent d1765e5 commit e8089dd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ class MembersFragment : BaseFragment() {
isRecyclerView = true
}
} else {
Toast.makeText(activity, "Oops! Not found", Toast.LENGTH_SHORT).show()
if (filterMap.containsKey("skills") && filterMap["skills"] == "")
Toast.makeText(activity, "Oops! Not found", Toast.LENGTH_SHORT).show()
}
memberListInitialized = true
tvEmptyList.visibility = View.GONE
Expand Down

0 comments on commit e8089dd

Please sign in to comment.