diff --git a/Classes/ChatConversationTableView.m b/Classes/ChatConversationTableView.m index 199c188d2..198569cbd 100644 --- a/Classes/ChatConversationTableView.m +++ b/Classes/ChatConversationTableView.m @@ -415,6 +415,10 @@ static const CGFloat MESSAGE_SPACING_PERCENTAGE = 1.f; LinphoneEventLog *event = [[eventList objectAtIndex:indexPath.row] pointerValue]; + if (linphone_event_log_get_type(event) != LinphoneEventLogTypeConferenceChatMessage) { + return [UISwipeActionsConfiguration configurationWithActions:@[]]; + } + UIContextualAction *replyAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:NSLocalizedString(@"Reply", nil) handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) { diff --git a/Podfile b/Podfile index 38788bd8b..05147ccc4 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ source "https://github.com/CocoaPods/Specs.git" def all_pods if ENV['PODFILE_PATH'].nil? - pod 'linphone-sdk', '~> 5.1.0-beta.69+950f104' + pod 'linphone-sdk', '~>5.2.0-alpha' else pod 'linphone-sdk', :path => ENV['PODFILE_PATH'] # local sdk end