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
		
	
	
		
			513 B
		
	
	
	
		
			Swift
		
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			513 B
		
	
	
	
		
			Swift
		
	
| 
											5 years ago
										 | 
 | ||
| 
											5 years ago
										 | public extension SNProtoEnvelope { | ||
| 
											5 years ago
										 | 
 | ||
| 
											5 years ago
										 |     static func from(_ json: JSON) -> SNProtoEnvelope? { | ||
| 
											5 years ago
										 |         guard let base64EncodedData = json["data"] as? String, let data = Data(base64Encoded: base64EncodedData) else { | ||
| 
											5 years ago
										 |             SNLog("Failed to decode data for message: \(json).") | ||
| 
											5 years ago
										 |             return nil | ||
|  |         } | ||
|  |         guard let result = try? MessageWrapper.unwrap(data: data) else { | ||
| 
											5 years ago
										 |             SNLog("Failed to unwrap data for message: \(json).") | ||
| 
											5 years ago
										 |             return nil | ||
|  |         } | ||
|  |         return result | ||
|  |     } | ||
|  | } |