From b4960ae7424fad0545f3ef98f234c3f88ef3710e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 4 Jan 2026 11:50:48 -0600 Subject: [PATCH] remove sync_recordings --- docs/docs/configuration/reference.md | 2 -- web/public/locales/en/config/record.json | 5 +---- web/src/types/frigateConfig.ts | 2 -- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/docs/configuration/reference.md b/docs/docs/configuration/reference.md index f2d7eccb2..5b2819d61 100644 --- a/docs/docs/configuration/reference.md +++ b/docs/docs/configuration/reference.md @@ -510,8 +510,6 @@ record: # Optional: Number of minutes to wait between cleanup runs (default: shown below) # This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o expire_interval: 60 - # Optional: Two-way sync recordings database with disk on startup and once a day (default: shown below). - sync_recordings: False # Optional: Continuous retention settings continuous: # Optional: Number of days to retain recordings regardless of tracked objects or motion (default: shown below) diff --git a/web/public/locales/en/config/record.json b/web/public/locales/en/config/record.json index 81139084e..0c4a5fc42 100644 --- a/web/public/locales/en/config/record.json +++ b/web/public/locales/en/config/record.json @@ -4,9 +4,6 @@ "enabled": { "label": "Enable record on all cameras." }, - "sync_recordings": { - "label": "Sync recordings with disk on startup and once a day." - }, "expire_interval": { "label": "Number of minutes to wait between cleanup runs." }, @@ -90,4 +87,4 @@ "label": "Keep track of original state of recording." } } -} \ No newline at end of file +} diff --git a/web/src/types/frigateConfig.ts b/web/src/types/frigateConfig.ts index 94c9ba6e9..7c69ef808 100644 --- a/web/src/types/frigateConfig.ts +++ b/web/src/types/frigateConfig.ts @@ -197,7 +197,6 @@ export interface CameraConfig { days: number; mode: string; }; - sync_recordings: boolean; }; review: { alerts: { @@ -542,7 +541,6 @@ export interface FrigateConfig { days: number; mode: string; }; - sync_recordings: boolean; }; rtmp: {