TF-1767 Fix Reply/Forward original message should be marked, not the sent one

(cherry picked from commit 827c6537cbad268dac4860fb0c57714811ed44e1)
This commit is contained in:
dab246
2023-04-18 15:31:01 +07:00
committed by Dat Vu
parent 00a8d92ec9
commit efc2104933
5 changed files with 111 additions and 72 deletions
@@ -19,4 +19,16 @@ extension KeyWordIdentifierExtension on KeyWordIdentifier {
generatePath(): markStarAction == MarkStarAction.markStar ? true : null
});
}
PatchObject generateAnsweredActionPath() {
return PatchObject({
generatePath(): true
});
}
PatchObject generateForwardedActionPath() {
return PatchObject({
generatePath(): true
});
}
}