From 98c5c996fc57ac5a9af6346de7edbde1ad4f9274 Mon Sep 17 00:00:00 2001 From: Ryan Zhao Date: Tue, 11 Oct 2022 16:37:48 +1100 Subject: [PATCH] clean --- Session/Conversations/ConversationViewModel.swift | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Session/Conversations/ConversationViewModel.swift b/Session/Conversations/ConversationViewModel.swift index ed3e3b262..48a81fbd1 100644 --- a/Session/Conversations/ConversationViewModel.swift +++ b/Session/Conversations/ConversationViewModel.swift @@ -197,16 +197,6 @@ public class ConversationViewModel: OWSAudioPlayerDelegate { return SQL("LEFT JOIN \(Profile.self) ON \(profile[.id]) = \(interaction[.authorId])") }() - ), - PagedData.ObservedChanges( - table: Quote.self, - columns: [.body, .attachmentId], - joinToPagedType: { - let interaction: TypedTableAlias = TypedTableAlias() - let quote: TypedTableAlias = TypedTableAlias() - - return SQL("LEFT JOIN \(Quote.self) ON \(quote[.interactionId]) = \(interaction[.id])") - }() ) ], joinSQL: MessageViewModel.optimisedJoinSQL,