fix ons search error

pull/891/head
Ryan ZHAO 9 months ago
parent 654419d116
commit 4da21035ca

@ -99,6 +99,8 @@ struct NewMessageScreen: View {
case SnodeAPIError.onsDecryptionFailed, SnodeAPIError.onsHashingFailed, case SnodeAPIError.onsDecryptionFailed, SnodeAPIError.onsHashingFailed,
SnodeAPIError.onsValidationFailed: SnodeAPIError.onsValidationFailed:
return "onsErrorUnableToSearch".localized() return "onsErrorUnableToSearch".localized()
case SnodeAPIError.onsNotFound:
return "new_message_screen_error_msg_unrecognized_ons".localized()
case is NetworkError: case is NetworkError:
return "onsErrorUnableToSearch".localized() return "onsErrorUnableToSearch".localized()
default: break default: break

@ -13,7 +13,7 @@ extension SnodeAPI {
} }
fileprivate let nonce: String? fileprivate let nonce: String?
fileprivate let encryptedValue: String fileprivate let encryptedValue: String?
} }
enum CodingKeys: String, CodingKey { enum CodingKeys: String, CodingKey {
@ -35,7 +35,9 @@ extension SnodeAPI {
// MARK: - Convenience // MARK: - Convenience
func sessionId(sodium: Sodium, nameBytes: [UInt8], nameHashBytes: [UInt8]) throws -> String { func sessionId(sodium: Sodium, nameBytes: [UInt8], nameHashBytes: [UInt8]) throws -> String {
let ciphertext: [UInt8] = Data(hex: result.encryptedValue).bytes guard let encryptedValue = result.encryptedValue else { throw SnodeAPIError.onsNotFound }
let ciphertext: [UInt8] = Data(hex: encryptedValue).bytes
// Handle old Argon2-based encryption used before HF16 // Handle old Argon2-based encryption used before HF16
guard let hexEncodedNonce: String = result.nonce else { guard let hexEncodedNonce: String = result.nonce else {

@ -414,7 +414,6 @@ public final class SnodeAPI {
) )
} }
.send(using: dependencies) .send(using: dependencies)
.retry(4)
.map { _, sessionId in sessionId } .map { _, sessionId in sessionId }
.eraseToAnyPublisher() .eraseToAnyPublisher()
} }

@ -27,6 +27,7 @@ public enum SnodeAPIError: Error, CustomStringConvertible {
case onsDecryptionFailed case onsDecryptionFailed
case onsHashingFailed case onsHashingFailed
case onsValidationFailed case onsValidationFailed
case onsNotFound
// Quic // Quic
case invalidNetwork case invalidNetwork
@ -65,6 +66,7 @@ public enum SnodeAPIError: Error, CustomStringConvertible {
case .onsDecryptionFailed: return "Couldn't decrypt ONS name (SnodeAPIError.onsDecryptionFailed)." case .onsDecryptionFailed: return "Couldn't decrypt ONS name (SnodeAPIError.onsDecryptionFailed)."
case .onsHashingFailed: return "Couldn't compute ONS name hash (SnodeAPIError.onsHashingFailed)." case .onsHashingFailed: return "Couldn't compute ONS name hash (SnodeAPIError.onsHashingFailed)."
case .onsValidationFailed: return "ONS name validation failed (SnodeAPIError.onsValidationFailed)." case .onsValidationFailed: return "ONS name validation failed (SnodeAPIError.onsValidationFailed)."
case .onsNotFound: return "ONS name not found (SnodeAPIError.onsNotFound)"
// Quic // Quic
case .invalidNetwork: return "Unable to create network (SnodeAPIError.invalidNetwork)." case .invalidNetwork: return "Unable to create network (SnodeAPIError.invalidNetwork)."

Loading…
Cancel
Save