Skip to content

Commit

Permalink
Quick fix warning nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
BillCarsonFr committed Jan 10, 2022
1 parent 2f51c91 commit d999bfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 -> {
Expand Down

0 comments on commit d999bfb

Please sign in to comment.