1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-19 23:39:09 -05:00

Add missing onDetachView in AutDialog (#2476)

This commit is contained in:
Rafał Borcz 2024-03-11 11:45:15 +01:00 committed by Mikołaj Pich
parent b31c7e1720
commit 377c288e9e
No known key found for this signature in database

View File

@ -78,4 +78,9 @@ class AuthDialog : BaseDialogFragment<DialogAuthBinding>(), AuthView {
override fun showDescriptionWithName(name: String) {
binding.authDescription.text = getString(R.string.auth_description, name).parseAsHtml()
}
override fun onDestroyView() {
presenter.onDetachView()
super.onDestroyView()
}
}