Skip to content

Commit

Permalink
Set decoupled on response code 3955 (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebira authored Jan 7, 2025
1 parent 82349d6 commit 7a00dbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fints/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,12 @@ def init(self, *extra_segments):
retval.find_segment_first('HITAN'),
'_continue_dialog_initialization',
self.client.is_challenge_structured(),
resp.code == '3955',
False,
)
if resp.code == '3955':
self.client.init_tan_response.decoupled = True
break

self.need_init = False
return retval
except Exception as e:
Expand Down

0 comments on commit 7a00dbb

Please sign in to comment.