TF-1708 Update props properties for all state object in interactor
(cherry picked from commit 2a5441c2ef4facf28e7e6e1678e89601d72259be)
This commit is contained in:
@@ -55,7 +55,7 @@ class MarkAsMultipleEmailReadInteractor {
|
||||
currentMailboxState: currentMailboxState));
|
||||
}
|
||||
} catch (e) {
|
||||
yield Left(MarkAsMultipleEmailReadFailure(e, readAction));
|
||||
yield Left(MarkAsMultipleEmailReadFailure(readAction, e));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -45,7 +45,7 @@ class MarkAsStarMultipleEmailInteractor {
|
||||
currentEmailState: currentEmailState));
|
||||
}
|
||||
} catch (e) {
|
||||
yield Left(MarkAsStarMultipleEmailFailure(e, markStarAction));
|
||||
yield Left(MarkAsStarMultipleEmailFailure(markStarAction, e));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -59,7 +59,7 @@ class MoveMultipleEmailToMailboxInteractor {
|
||||
currentMailboxState: currentMailboxState));
|
||||
}
|
||||
} catch (e) {
|
||||
yield Left(MoveMultipleEmailToMailboxFailure(e, moveRequest.emailActionType, moveRequest.moveAction));
|
||||
yield Left(MoveMultipleEmailToMailboxFailure(moveRequest.emailActionType, moveRequest.moveAction, e));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user