Merge pull request #684 from mpretty-cyro/fix/home-typing-indicator

Fixed a bug where the typing indicator wasn't working on the home screen
pull/688/head
Morgan Pretty 2 years ago committed by GitHub
commit aa9019e0b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -134,7 +134,7 @@ public class HomeViewModel {
joinToPagedType: {
let typingIndicator: TypedTableAlias<ThreadTypingIndicator> = TypedTableAlias()
return SQL("LEFT JOIN \(typingIndicator[.threadId]) = \(thread[.id])")
return SQL("LEFT JOIN \(ThreadTypingIndicator.self) ON \(typingIndicator[.threadId]) = \(thread[.id])")
}()
)
],

Loading…
Cancel
Save