From 1afdfa8bcb1f2ebabe36eefc7e8cd15105c047b4 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 31 Aug 2022 12:01:21 +1000 Subject: [PATCH] Fixed a bug where the typing indicator wasn't working on the home screen --- Session/Home/HomeViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Home/HomeViewModel.swift b/Session/Home/HomeViewModel.swift index 3b20abebe..e343e3ea1 100644 --- a/Session/Home/HomeViewModel.swift +++ b/Session/Home/HomeViewModel.swift @@ -134,7 +134,7 @@ public class HomeViewModel { joinToPagedType: { let typingIndicator: TypedTableAlias = TypedTableAlias() - return SQL("LEFT JOIN \(typingIndicator[.threadId]) = \(thread[.id])") + return SQL("LEFT JOIN \(ThreadTypingIndicator.self) ON \(typingIndicator[.threadId]) = \(thread[.id])") }() ) ],