fix the ons error logic

pull/891/head
Ryan ZHAO 9 months ago
parent 75845619f7
commit 23511941c5

@ -96,20 +96,11 @@ struct NewMessageScreen: View {
modalActivityIndicator.dismiss {
let message: String = {
switch error {
case SnodeAPIError.onsDecryptionFailed, SnodeAPIError.onsHashingFailed,
SnodeAPIError.onsValidationFailed:
return "onsErrorUnableToSearch".localized()
case SnodeAPIError.onsNotFound:
return "new_message_screen_error_msg_unrecognized_ons".localized()
case is NetworkError:
default:
return "onsErrorUnableToSearch".localized()
default: break
}
return (maybeSessionId?.prefix == .blinded15 || maybeSessionId?.prefix == .blinded25 ?
"accountIdErrorInvalid".localized() :
"new_message_screen_error_msg_unrecognized_ons".localized()
)
}()
errorString = message

Loading…
Cancel
Save