Avoid NPE in browse source screen

It logically should never be null, yet I see crash logs about it.
This commit is contained in:
arkon 2022-10-22 16:04:12 -04:00
parent 6e04822f5e
commit 78b76a186c

View File

@ -226,9 +226,9 @@ fun BrowseSourceContent(
val getErrorMessage: (LoadState.Error) -> String = { state ->
when {
state.error is NoResultsException -> context.getString(R.string.no_results_found)
state.error.message == null -> ""
state.error.message!!.startsWith("HTTP error") -> "${state.error.message}: ${context.getString(R.string.http_error_hint)}"
else -> state.error.message!!
state.error.message.isNullOrEmpty() -> ""
state.error.message.orEmpty().startsWith("HTTP error") -> "${state.error.message}: ${context.getString(R.string.http_error_hint)}"
else -> state.error.message.orEmpty()
}
}