Improve client info reported to Jellyfin (#79974)

This commit is contained in:
Chris Talkington 2022-10-10 20:24:00 -05:00 committed by GitHub
parent eac1a1e513
commit 8aa5a785b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -2,9 +2,11 @@
from typing import Final
from homeassistant.const import __version__ as hass_version
DOMAIN: Final = "jellyfin"
CLIENT_VERSION: Final = "1.0"
CLIENT_VERSION: Final = hass_version
COLLECTION_TYPE_MOVIES: Final = "movies"
COLLECTION_TYPE_MUSIC: Final = "music"