mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 04:55:29 +03:00
fix: use layoutInflater directly
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
dba9dc982d
commit
2c7c720a4d
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class DialogBanListFragment(val roomToken: String) : DialogFragment() {
|
|||
|
||||
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
|
||||
NextcloudTalkApplication.sharedApplication!!.componentApplication.inject(this)
|
||||
binding = FragmentDialogBanListBinding.inflate(LayoutInflater.from(context))
|
||||
binding = FragmentDialogBanListBinding.inflate(layoutInflater)
|
||||
viewModel =
|
||||
ViewModelProvider(this, viewModelFactory)[ConversationInfoViewModel::class.java]
|
||||
conversationUser = currentUserProvider.currentUser.blockingGet()
|
||||
|
|
Loading…
Reference in a new issue