mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
SubCategoriesFragment.kt: Changed arguments!! to requireArguments()
This commit is contained in:
parent
37e4b76add
commit
3033c5ed0c
1 changed files with 1 additions and 1 deletions
|
|
@ -20,6 +20,6 @@ class SubCategoriesFragment : PageableCategoryFragment() {
|
||||||
savedInstanceState: Bundle?,
|
savedInstanceState: Bundle?,
|
||||||
) {
|
) {
|
||||||
super.onViewCreated(view, savedInstanceState)
|
super.onViewCreated(view, savedInstanceState)
|
||||||
onQueryUpdated("$CATEGORY_PREFIX${arguments!!.getString("categoryName")!!}")
|
onQueryUpdated("$CATEGORY_PREFIX${requireArguments().getString("categoryName")!!}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue