|  |  | @ -56,7 +56,6 @@ public final class VisibleMessage: Message { | 
			
		
	
		
		
			
				
					
					|  |  |  |     public init( |  |  |  |     public init( | 
			
		
	
		
		
			
				
					
					|  |  |  |         sender: String? = nil, |  |  |  |         sender: String? = nil, | 
			
		
	
		
		
			
				
					
					|  |  |  |         sentTimestamp: UInt64? = nil, |  |  |  |         sentTimestamp: UInt64? = nil, | 
			
		
	
		
		
			
				
					
					|  |  |  |         recipient: String? = nil, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |         syncTarget: String? = nil, |  |  |  |         syncTarget: String? = nil, | 
			
		
	
		
		
			
				
					
					|  |  |  |         text: String?, |  |  |  |         text: String?, | 
			
		
	
		
		
			
				
					
					|  |  |  |         attachmentIds: [String] = [], |  |  |  |         attachmentIds: [String] = [], | 
			
		
	
	
		
		
			
				
					|  |  | @ -79,7 +78,6 @@ public final class VisibleMessage: Message { | 
			
		
	
		
		
			
				
					
					|  |  |  |          |  |  |  |          | 
			
		
	
		
		
			
				
					
					|  |  |  |         super.init( |  |  |  |         super.init( | 
			
		
	
		
		
			
				
					
					|  |  |  |             sentTimestamp: sentTimestamp, |  |  |  |             sentTimestamp: sentTimestamp, | 
			
		
	
		
		
			
				
					
					|  |  |  |             recipient: recipient, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |             sender: sender |  |  |  |             sender: sender | 
			
		
	
		
		
			
				
					
					|  |  |  |         ) |  |  |  |         ) | 
			
		
	
		
		
			
				
					
					|  |  |  |     } |  |  |  |     } | 
			
		
	
	
		
		
			
				
					|  |  | @ -241,7 +239,6 @@ public extension VisibleMessage { | 
			
		
	
		
		
			
				
					
					|  |  |  |         let visibleMessage: VisibleMessage = VisibleMessage( |  |  |  |         let visibleMessage: VisibleMessage = VisibleMessage( | 
			
		
	
		
		
			
				
					
					|  |  |  |             sender: interaction.authorId, |  |  |  |             sender: interaction.authorId, | 
			
		
	
		
		
			
				
					
					|  |  |  |             sentTimestamp: UInt64(interaction.timestampMs), |  |  |  |             sentTimestamp: UInt64(interaction.timestampMs), | 
			
		
	
		
		
			
				
					
					|  |  |  |             recipient: interaction.threadId, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |             syncTarget: nil, |  |  |  |             syncTarget: nil, | 
			
		
	
		
		
			
				
					
					|  |  |  |             text: interaction.body, |  |  |  |             text: interaction.body, | 
			
		
	
		
		
			
				
					
					|  |  |  |             attachmentIds: ((try? interaction.attachments.fetchAll(db)) ?? []) |  |  |  |             attachmentIds: ((try? interaction.attachments.fetchAll(db)) ?? []) | 
			
		
	
	
		
		
			
				
					|  |  | 
 |