Skip to content

Commit

Permalink
Fix for storing GUI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
egbertbouman committed Aug 20, 2024
1 parent 2d744dc commit e0f8128
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tribler/core/restapi/settings_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,5 @@ def _recursive_merge_settings(self, existing: dict, updates: dict, top: bool = T

# Since the core doesn't need to be aware of the GUI settings, we just copy them.
if top and "ui" in updates:
existing["ui"] = existing.get("ui", {})
existing["ui"].update(updates["ui"])

0 comments on commit e0f8128

Please sign in to comment.