We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that there are too many of the same events posted
I checked this code and it always skips return.
onvif2mqtt/src/utils/debounceStateUpdate.js
Line 5 in 056129a
I changed it a bit like
if (currentMotionStates[onvifDeviceId] !== undefined) { if (currentMotionStates[onvifDeviceId].IsMotion == motionState.IsMotion) { return; } }
and now an update is sent only when the state is changed.
The text was updated successfully, but these errors were encountered:
no need nested conditions
if (currentMotionStates[onvifDeviceId] !== undefined && currentMotionStates[onvifDeviceId].IsMotion === motionState.IsMotion) { return; }
or even
if (currentMotionStates[onvifDeviceId] && currentMotionStates[onvifDeviceId].IsMotion === motionState.IsMotion) { return; }
Sorry, something went wrong.
No branches or pull requests
I noticed that there are too many of the same events posted
I checked this code and it always skips return.
onvif2mqtt/src/utils/debounceStateUpdate.js
Line 5 in 056129a
I changed it a bit like
if (currentMotionStates[onvifDeviceId] !== undefined) { if (currentMotionStates[onvifDeviceId].IsMotion == motionState.IsMotion) { return; } }
and now an update is sent only when the state is changed.
The text was updated successfully, but these errors were encountered: