Skip to content

Commit f6c4e5c

Browse files
committed
Fix system ID handling
1 parent aa1557d commit f6c4e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fints/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ def _new_dialog(self, lazy_init=False):
12071207
)
12081208

12091209
def fetch_tan_mechanisms(self):
1210-
if self.system_id and not self.get_current_tan_mechanism():
1210+
if (self.system_id and self.system_id != SYSTEM_ID_UNASSIGNED) and not self.get_current_tan_mechanism():
12111211
# system_id was persisted and given to the client, but nothing else
12121212
self.set_tan_mechanism('999')
12131213
with self._get_dialog(lazy_init=True) as dialog:

0 commit comments

Comments
 (0)