From 982c7841533d37b7cb1d87e1e289093056419f32 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Fri, 31 Jan 2025 17:33:08 +0100 Subject: [PATCH] treat markers and videochat-invitations same as info-messages --- deltachat-ios/Chat/ChatViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-ios/Chat/ChatViewController.swift b/deltachat-ios/Chat/ChatViewController.swift index e5b461358..50460c686 100644 --- a/deltachat-ios/Chat/ChatViewController.swift +++ b/deltachat-ios/Chat/ChatViewController.swift @@ -1934,7 +1934,7 @@ extension ChatViewController { UIAction.menuAction(localizationKey: "forward", image: image, indexPath: indexPath, action: forward) ) - if !message.isInfo { // info-messages out of context results in confusion, see https://github.com/deltachat/deltachat-ios/issues/2567 + if !isMarkerOrInfo(message) { // info-messages out of context results in confusion, see https://github.com/deltachat/deltachat-ios/issues/2567 if dcChat.isSelfTalk || message.savedMessageId != 0 { children.append( UIAction.menuAction(localizationKey: "unsave", systemImageName: "star.slash", indexPath: indexPath, action: toggleSave)