Bugfix - username with "." character fix

This commit is contained in:
VakarisZ 2020-06-08 14:24:16 +03:00
parent 3228bcf2c7
commit 5669ae652c
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ def replace_user_dot_with_comma(creds):
def add_system_info_creds_to_config(creds):
for user in creds:
ConfigService.creds_add_username(user)
ConfigService.creds_add_username(creds[user]['username'])
if 'password' in creds[user] and creds[user]['password']:
ConfigService.creds_add_password(creds[user]['password'])
if 'lm_hash' in creds[user] and creds[user]['lm_hash']: