mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
527 B
Swift
16 lines
527 B
Swift
|
|
public extension SNProtoEnvelope {
|
|
|
|
static func from(_ json: JSON) -> SNProtoEnvelope? {
|
|
guard let base64EncodedData = json["data"] as? String, let data = Data(base64Encoded: base64EncodedData) else {
|
|
print("[Loki] Failed to decode data for message: \(json).")
|
|
return nil
|
|
}
|
|
guard let result = try? MessageWrapper.unwrap(data: data) else {
|
|
print("[Loki] Failed to unwrap data for message: \(json).")
|
|
return nil
|
|
}
|
|
return result
|
|
}
|
|
}
|