Skip to content

Commit 5cadb37

Browse files
committed
[items] Fix sendCommandIfDifferent fails with Dimmer/Number Items when using string commands
Fixes #410. Signed-off-by: Florian Hotze <[email protected]>
1 parent e4787cc commit 5cadb37

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/items/items.js

+7
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,13 @@ class Item {
261261
}
262262
}
263263

264+
// value is number as string and current state is numeric and both are equal
265+
if (typeof value === 'string' && !isNaN(value) && this.numericState !== null) {
266+
if (parseFloat(value) === this.numericState) {
267+
return false;
268+
}
269+
}
270+
264271
// stringified value and string state are equal
265272
value = _toOpenhabPrimitiveType(value);
266273
if (value.toString() === this.state) {

0 commit comments

Comments
 (0)