We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118f6fc commit 61ea370Copy full SHA for 61ea370
1 file changed
npbackup/gui/common_gui_logic.py
@@ -783,7 +783,8 @@ def update_gui_values(
783
return
784
785
# We need to discard sukeys from recipients in order to avoid searching for subkeys in GUI
786
- if key.startswith("global_email.recipients."):
+ # Also, recipients key itself is handled in update_global_gui, so we can bypass it too here
787
+ if key.startswith("global_email.recipients"):
788
789
790
# Since FreeSimpleGUI does not allow to suppress the debugger anymore in v5.1.0, we need to handle KeyError
0 commit comments