diff --git a/Classes/ChatConversationCreateView.m b/Classes/ChatConversationCreateView.m index 0bcbbf38c..af346de40 100644 --- a/Classes/ChatConversationCreateView.m +++ b/Classes/ChatConversationCreateView.m @@ -46,11 +46,15 @@ static UICompositeViewDescription *compositeDescription = nil; } -(void) unfragmentCompositeDescription { + if (!IPAD) + return; compositeDescription.isLeftFragment = true; compositeDescription.otherFragment = nil; } -(void) fragmentCompositeDescription { + if (!IPAD) + return; compositeDescription.otherFragment = IPAD ? NSStringFromClass(ChatsListView.class) : nil; compositeDescription.isLeftFragment = false; }