This commit is contained in:
Valere 2021-09-24 18:44:04 +02:00
parent 0acf90d8cd
commit 8318f2d38f

View file

@ -45,7 +45,7 @@ fun Context.showIdentityServerConsentDialog(configuredIdentityServer: String?, c
.setTitle(R.string.identity_server_consent_dialog_title) .setTitle(R.string.identity_server_consent_dialog_title)
.setMessage(getString(R.string.identity_server_consent_dialog_content, configuredIdentityServer ?: "")) .setMessage(getString(R.string.identity_server_consent_dialog_content, configuredIdentityServer ?: ""))
.setPositiveButton(R.string.yes) { _, _ -> .setPositiveButton(R.string.yes) { _, _ ->
consentCallBack?.invoke() consentCallBack.invoke()
} }
.setNegativeButton(R.string.no, null) .setNegativeButton(R.string.no, null)
.show() .show()