Skip to content

Commit 7cb9e86

Browse files
authored
Update __init__.py
1 parent be41ef5 commit 7cb9e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/tuya_v2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def entry_decrypt(hass: HomeAssistant, entry: ConfigEntry, init_entry_data):
9999
c = cbc_key + cbc_iv
100100
c_xor_entry = aes.xor_encrypt(c, access_id_entry)
101101
# account info encrypted with AES-CBC
102-
user_input_encrpt = aes.cbc_encrypt(cbc_key, cbc_iv, json.dumps(init_entry_data))
102+
user_input_encrpt = aes.cbc_encrypt(cbc_key, cbc_iv, json.dumps(dict(init_entry_data)))
103103
# udpate old account info
104104
hass.config_entries.async_update_entry(
105105
entry,

0 commit comments

Comments
 (0)