diff --git a/frigate/app.py b/frigate/app.py index 02e657ce1..9d85f461e 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -196,7 +196,7 @@ class FrigateApp: if os.path.exists(f"{CONFIG_DIR}/.vacuum"): with open(f"{CONFIG_DIR}/.vacuum") as f: try: - timestamp = int(f.readline()) + timestamp = round(float(f.readline())) except Exception: timestamp = 0