don't allow to star video-call messages

This commit is contained in:
adbenitez 2025-02-06 20:44:09 +01:00
parent 564c0fe27d
commit b692abc235

View file

@ -190,7 +190,7 @@ public class DcMsg {
public boolean canSave() { public boolean canSave() {
// saving info-messages out of context results in confusion, see https://github.com/deltachat/deltachat-ios/issues/2567 // saving info-messages out of context results in confusion, see https://github.com/deltachat/deltachat-ios/issues/2567
return !isInfo(); return !isInfo() && getType() != DC_MSG_VIDEOCHAT_INVITATION;
} }
public boolean isSaved() { public boolean isSaved() {