Quick fix warning nullable
This commit is contained in:
parent
aa7d284dd9
commit
6798492cc3
|
@ -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…
Reference in New Issue