Album ID sensor now also exposes album name

This commit is contained in:
2026-01-30 15:48:16 +03:00
parent eedc7792c8
commit e6619cb1c5

View File

@@ -190,7 +190,9 @@ class ImmichAlbumIdSensor(ImmichAlbumBaseSensor):
if not self._album_data:
return {}
attrs: dict[str, Any] = {}
attrs: dict[str, Any] = {
"album_name": self._album_data.name,
}
# Primary share URL (prefers public, falls back to protected)
share_url = self.coordinator.get_any_url()