mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Fix exports migration when there is none (#14761)
This commit is contained in:
parent
77ec86d31a
commit
9755fa0537
@ -50,14 +50,15 @@ def migrate_frigate_config(config_file: str):
|
|||||||
previous_version = "0.14"
|
previous_version = "0.14"
|
||||||
|
|
||||||
logger.info("Migrating export file names...")
|
logger.info("Migrating export file names...")
|
||||||
for file in os.listdir(EXPORT_DIR):
|
if os.path.isdir(EXPORT_DIR):
|
||||||
if "@" not in file:
|
for file in os.listdir(EXPORT_DIR):
|
||||||
continue
|
if "@" not in file:
|
||||||
|
continue
|
||||||
|
|
||||||
new_name = file.replace("@", "_")
|
new_name = file.replace("@", "_")
|
||||||
os.rename(
|
os.rename(
|
||||||
os.path.join(EXPORT_DIR, file), os.path.join(EXPORT_DIR, new_name)
|
os.path.join(EXPORT_DIR, file), os.path.join(EXPORT_DIR, new_name)
|
||||||
)
|
)
|
||||||
|
|
||||||
if previous_version < "0.15-0":
|
if previous_version < "0.15-0":
|
||||||
logger.info(f"Migrating frigate config from {previous_version} to 0.15-0...")
|
logger.info(f"Migrating frigate config from {previous_version} to 0.15-0...")
|
||||||
|
Loading…
Reference in New Issue
Block a user