This commit is contained in:
Horis 2024-02-07 17:57:34 +08:00
parent 65d5d0cf74
commit 7d413ba883

View File

@ -87,7 +87,8 @@ class BooksFragment() : BaseFragment(R.layout.fragment_books),
position = it.getInt("position", 0)
groupId = it.getLong("groupId", -1)
bookSort = it.getInt("bookSort", 0)
binding.refreshLayout.isEnabled = it.getBoolean("enableRefresh", true)
enableRefresh = it.getBoolean("enableRefresh", true)
binding.refreshLayout.isEnabled = enableRefresh
}
initRecyclerView()
upRecyclerData()