TF-1899 Add failure param when handleExceptionAction

(cherry picked from commit 3e87b9fb2c17ebc6524003d3587be02317a7a768)
This commit is contained in:
dab246
2023-06-07 11:56:01 +07:00
committed by Dat Vu
parent ef49db7b91
commit 9f8eab3e01
4 changed files with 11 additions and 11 deletions
@@ -190,8 +190,8 @@ class ThreadController extends BaseController with EmailActionController {
}
@override
void handleExceptionAction(Exception exception) {
super.handleExceptionAction(exception);
void handleExceptionAction({Failure? failure, Exception? exception}) {
super.handleExceptionAction(failure: failure, exception: exception);
clearState();
}