Skip to content

Draft: Fix events on NaN for double and float attributes

Thomas Juerges requested to merge 1207-event-on-nan into main

Closes #1207

It turns out that the code checking for NaN values was there but was incorrect.
It checked only NaN -> not-NaN transition, which prevented the NaN value to ever be recorded as previous value.

Now the code checks if the NaN status is different between current and last values.

Merge request reports