Skip to content

Commit

Permalink
Merge pull request #607 from breez/state-issue-550
Browse files Browse the repository at this point in the history
fix handling request reflects state
  • Loading branch information
ubbabeck authored Jul 17, 2023
2 parents e1c9369 + 7fdd362 commit d17d4c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/handlers/input_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ class InputHandler extends Handler {
return;
}

inputState.isLoading ? _handlingRequest = true : _handlingRequest = false;
_setLoading(inputState.isLoading);
_handlingRequest = true;

handleInputData(inputState.inputData)
.then((result) {
handleResult(result);
Expand Down

0 comments on commit d17d4c9

Please sign in to comment.