Skip to content

Commit

Permalink
Fix use experimental migrator (#12906)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Aug 30, 2024
1 parent 4ecc0e1 commit e867880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frigate/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def migrate_014(config: dict[str, dict[str, any]]) -> dict[str, dict[str, any]]:
# Remove UI fields
if new_config.get("ui"):
if new_config["ui"].get("use_experimental"):
del new_config["ui"]["experimental"]
del new_config["ui"]["use_experimental"]

if new_config["ui"].get("live_mode"):
del new_config["ui"]["live_mode"]
Expand Down

0 comments on commit e867880

Please sign in to comment.