mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 04:08:44 +03:00
Quick fix warning nullable
This commit is contained in:
parent
aa7d284dd9
commit
6798492cc3
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class AccountDataEpoxyController @Inject constructor(
|
|||
is Fail -> {
|
||||
genericFooterItem {
|
||||
id("fail")
|
||||
text(data.accountData.error.localizedMessage.toEpoxyCharSequence())
|
||||
text(data.accountData.error.localizedMessage?.toEpoxyCharSequence())
|
||||
}
|
||||
}
|
||||
is Success -> {
|
||||
|
|
|
@ -87,7 +87,7 @@ class ThreePidsSettingsController @Inject constructor(
|
|||
is Fail -> {
|
||||
genericFooterItem {
|
||||
id("fail")
|
||||
text(data.threePids.error.localizedMessage.toEpoxyCharSequence())
|
||||
text(data.threePids.error.localizedMessage?.toEpoxyCharSequence())
|
||||
}
|
||||
}
|
||||
is Success -> {
|
||||
|
|
Loading…
Add table
Reference in a new issue