mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Avoid NPE in browse source screen
It logically should never be null, yet I see crash logs about it.
This commit is contained in:
		| @@ -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() | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user