about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/Messages/Conversation/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx
index 63175b551..62e0e8157 100644
--- a/src/screens/Messages/Conversation/index.tsx
+++ b/src/screens/Messages/Conversation/index.tsx
@@ -79,7 +79,7 @@ function Inner() {
   const [hasScrolled, setHasScrolled] = React.useState(false)
   const readyToShow =
     hasScrolled ||
-    (convoState.status === ConvoStatus.Ready &&
+    (isConvoActive(convoState) &&
       !convoState.isFetchingHistory &&
       convoState.items.length === 0)