Skip to content

Commit

Permalink
Reset DialogInitialization state when decoupled submission is still p…
Browse files Browse the repository at this point in the history
…ending on login

Fixes #439.
  • Loading branch information
Philipp91 authored Jun 26, 2024
1 parent 4f2ea90 commit d0b6b5b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/Fhp/FinTs.php
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,10 @@ public function checkDecoupledSubmission(BaseAction $action): bool
throw new UnexpectedResponseException('Got neither 3956 nor HITAN with tanProzess=2');
}
$action->setTanRequest($hitanProcessS);
if ($action instanceof DialogInitialization) {
$this->dialogId = null;
$action->setMessageNumber($this->messageNumber);
}
}
return $isSuccess;
}
Expand Down

0 comments on commit d0b6b5b

Please sign in to comment.