Miscellaneous fixes (#22913)

* add log when probing detect stream on startup

when users don't explicitly set detect.width and detect.height, we probe for them. sometimes the probe hangs (camera doesn't support UDP, like some Reolinks), so this log message will make that clearer

* add faq about probing detect stream

* fix stuck activity ring when tracked object transitions to stationary

* drop cache segments past retain cutoff regardless of retention mode

* add maintainer test
This commit is contained in:
Josh Hawkins
2026-04-18 08:10:50 -05:00
committed by GitHub
parent 74fcd720d3
commit cfb87f9744
5 changed files with 79 additions and 7 deletions

View File

@@ -137,9 +137,11 @@ export function useCameraActivity(
}
}
newObjects[updatedEventIndex].label = label;
newObjects[updatedEventIndex].stationary =
updatedEvent.after.stationary;
newObjects[updatedEventIndex] = {
...newObjects[updatedEventIndex],
label,
stationary: updatedEvent.after.stationary,
};
}
}