Skip to content

Commit

Permalink
Merge pull request #913 from AAPohl/develop
Browse files Browse the repository at this point in the history
homematic: fixing WebInterface for items with the same name
  • Loading branch information
Morg42 authored Feb 25, 2024
2 parents 608a284 + 174ff3a commit a22dde5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homematic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def parse_item(self, item):
hm_node = None

# store item and device information for plugin instance
self.hm_items.append( [str(item), item, hm_address, hm_channel, hm_function, hm_node, dev_type] )
self.hm_items.append( [str(item.property.path), item, hm_address, hm_channel, hm_function, hm_node, dev_type] )

# Initialize item from HomeMatic
if dev is not None:
Expand Down

0 comments on commit a22dde5

Please sign in to comment.