mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-09 21:51:41 +08:00
Make sure always interpret encrypted data as strings
This commit is contained in:
parent
dfeafc952e
commit
4a3cd795b8
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ def config_gui(config_dict: dict, config_file: str):
|
||||||
try:
|
try:
|
||||||
if config_dict[section][entry] is None:
|
if config_dict[section][entry] is None:
|
||||||
continue
|
continue
|
||||||
if not config_dict[section][entry].startswith(
|
if not str(config_dict[section][entry]).startswith(
|
||||||
configuration.ID_STRING
|
configuration.ID_STRING
|
||||||
):
|
):
|
||||||
value = ENCRYPTED_DATA_PLACEHOLDER
|
value = ENCRYPTED_DATA_PLACEHOLDER
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue