mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-08 05:04:45 +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:
|
||||
if config_dict[section][entry] is None:
|
||||
continue
|
||||
if not config_dict[section][entry].startswith(
|
||||
if not str(config_dict[section][entry]).startswith(
|
||||
configuration.ID_STRING
|
||||
):
|
||||
value = ENCRYPTED_DATA_PLACEHOLDER
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue