diff --git a/Tusker/Screens/Conversation/ConversationViewController.swift b/Tusker/Screens/Conversation/ConversationViewController.swift index 44415c780..9d2d0b98c 100644 --- a/Tusker/Screens/Conversation/ConversationViewController.swift +++ b/Tusker/Screens/Conversation/ConversationViewController.swift @@ -111,7 +111,9 @@ class ConversationViewController: UIViewController { super.viewWillAppear(animated) Task { - await loadMainStatus() + if case .unloaded = state { + await loadMainStatus() + } } }