mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Fix compilation issue
This commit is contained in:
parent
a3774c1161
commit
ba0898831b
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class TestPlayServices @Inject constructor(
|
|||
if (apiAvailability.isUserResolvableError(resultCode)) {
|
||||
quickFix = object : TroubleshootQuickFix(R.string.settings_troubleshoot_test_play_services_quickfix) {
|
||||
override fun doFix() {
|
||||
apiAvailability.getErrorDialog(context, resultCode, 9000 /*hey does the magic number*/).show()
|
||||
apiAvailability.getErrorDialog(context, resultCode, 9000 /*hey does the magic number*/)?.show()
|
||||
}
|
||||
}
|
||||
Timber.e("Play Services apk error $resultCode -> ${apiAvailability.getErrorString(resultCode)}.")
|
||||
|
|
Loading…
Reference in a new issue