diff --git a/custom_components/ical/manifest.json b/custom_components/ical/manifest.json index 14cf2e1..6b42344 100644 --- a/custom_components/ical/manifest.json +++ b/custom_components/ical/manifest.json @@ -15,6 +15,6 @@ "icalendar==5.0.7" ], "ssdp": [], - "version": "1.7.0", + "version": "1.7.1", "zeroconf": [] } diff --git a/custom_components/ical/sensor.py b/custom_components/ical/sensor.py index 507a7ca..4456abb 100755 --- a/custom_components/ical/sensor.py +++ b/custom_components/ical/sensor.py @@ -82,7 +82,7 @@ def __init__( @property def unique_id(self) -> str: """Return the unique ID of the sensor.""" - return f"{DOMAIN}_{self.ical_events.name.lower()}_event_{self._event_number}" + return f"{self.ical_events.name.lower()}_event_{self._event_number}" @property def name(self): diff --git a/ical_updater.json b/ical_updater.json index c5b52f4..a9f4be5 100644 --- a/ical_updater.json +++ b/ical_updater.json @@ -1,7 +1,7 @@ { "sensor.ical": { "updated_at": "2024-09-23", - "version": "1.7.0", + "version": "1.7.1", "local_location": "/custom_components/ics/__init__.py", "remote_location": "https://raw.githubusercontent.com/tybritten/ical-sensor-homeassistant/master/__init__.py", "visit_repo": "https://github.com/tybritten/ical-sensor-homeassistant/",