Add missing onDetachView in AutDialog (#2476)

This commit is contained in:
Rafał Borcz 2024-03-11 11:45:15 +01:00 committed by GitHub
parent 38c00ddab5
commit 0e99c81eb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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()
}
}