Bump amcrest version to 1.9.2 (#56281)

This commit is contained in:
Sean Vig 2021-09-16 00:53:40 -04:00 committed by GitHub
parent 4eb656d5d9
commit 69ff7a968a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -375,8 +375,8 @@ class AmcrestCam(Camera):
if self._brand is None:
resp = self._api.vendor_information.strip()
_LOGGER.debug("Assigned brand=%s", resp)
if resp.startswith("vendor="):
self._brand = resp.split("=")[-1]
if resp:
self._brand = resp
else:
self._brand = "unknown"
if self._model is None:

View File

@ -2,7 +2,7 @@
"domain": "amcrest",
"name": "Amcrest",
"documentation": "https://www.home-assistant.io/integrations/amcrest",
"requirements": ["amcrest==1.8.1"],
"requirements": ["amcrest==1.9.2"],
"dependencies": ["ffmpeg"],
"codeowners": ["@flacjacket"],
"iot_class": "local_polling"

View File

@ -276,7 +276,7 @@ ambee==0.3.0
ambiclimate==0.2.1
# homeassistant.components.amcrest
amcrest==1.8.1
amcrest==1.9.2
# homeassistant.components.androidtv
androidtv[async]==0.0.60