You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described by TK67 in Fhem forum, get_device_reading returns inconsistent information, if a device has two readings, with one reading-name being a longer version of another reading, e.g. if readings myReading and myReading2 exist, then asking for myReading2 would wrongly also return results for myReading.
The text was updated successfully, but these errors were encountered:
@Andre0512 : could you have a look at c3dbd44, I've changed your _response_filter function, because if readings: name and name1 existed, then asking for get_device_reading(dev,'name1') would return both readings for name and name1 because of:
'Value' in v and (not len(arg) or (len(arg) and k == arg[0]))} # k in arg[0]))} fixes #14
As described by TK67 in Fhem forum,
get_device_reading
returns inconsistent information, if a device has two readings, with one reading-name being a longer version of another reading, e.g. if readingsmyReading
andmyReading2
exist, then asking formyReading2
would wrongly also return results formyReading
.The text was updated successfully, but these errors were encountered: