diff --git a/lib/features/thread/presentation/thread_controller.dart b/lib/features/thread/presentation/thread_controller.dart index cad45e4db..595b05816 100644 --- a/lib/features/thread/presentation/thread_controller.dart +++ b/lib/features/thread/presentation/thread_controller.dart @@ -267,6 +267,11 @@ class ThreadController extends BaseController with EmailActionController { _navigationRouter = action.navigationRouter; _activateSearchFromRouter(); mailboxDashBoardController.clearDashBoardAction(); + } else if (action is RefreshChangedEmailAction) { + if (action.newState != _currentEmailState) { + _refreshEmailChanges(); + } + mailboxDashBoardController.clearDashBoardAction(); } });