Skip to content

Commit

Permalink
treat markers and videochat-invitations same as info-messages
Browse files Browse the repository at this point in the history
  • Loading branch information
r10s committed Jan 31, 2025
1 parent 62445d8 commit 982c784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-ios/Chat/ChatViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 982c784

Please sign in to comment.