check if motion dataframe is empty (#11593)

This commit is contained in:
Josh Hawkins
2024-05-28 11:33:28 -06:00
committed by GitHub
parent 8546d3d315
commit f7c3ddd380
+5
View File
@@ -440,6 +440,11 @@ def motion_activity():
# resample data using pandas to get activity on scaled basis
df = pd.DataFrame(data, columns=["start_time", "motion", "camera"])
if df.empty:
logger.warning("No motion data found for the requested time range")
return jsonify([])
df = df.astype(dtype={"motion": "float16"})
# set date as datetime index