Skip to content

Commit

Permalink
Merge pull request #440 from Philipp91/patch-7
Browse files Browse the repository at this point in the history
Reset DialogInitialization state when decoupled submission is still pending on login
  • Loading branch information
nemiah authored Jun 27, 2024
2 parents 4f2ea90 + d0b6b5b commit cd4b624
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 cd4b624

Please sign in to comment.