TF-103 [BUG] Given a mail in sent box, i open it, click reply, it sends it to myself

This commit is contained in:
dab246
2021-10-04 13:36:42 +07:00
committed by Dat H. Pham
parent b39786ebda
commit 50bf856688
6 changed files with 65 additions and 18 deletions
@@ -11,11 +11,13 @@ class ComposerArguments with EquatableMixin {
final Session session;
final UserProfile userProfile;
final Map<Role, MailboxId> mapMailboxId;
final Role? mailboxRole;
ComposerArguments({
this.emailActionType = EmailActionType.compose,
this.presentationEmail,
this.emailContent,
this.mailboxRole,
required this.session,
required this.userProfile,
required this.mapMailboxId,
@@ -26,6 +28,7 @@ class ComposerArguments with EquatableMixin {
emailActionType,
presentationEmail,
emailContent,
mailboxRole,
session,
userProfile,
mapMailboxId,