Fix stale camera error message in img_util (#109325)

This commit is contained in:
J. Nick Koston 2024-02-01 15:39:44 -06:00 committed by GitHub
parent 8038d833e8
commit 5a35c2e1e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,6 +98,6 @@ class TurboJPEGSingleton:
TurboJPEGSingleton.__instance = TurboJPEG()
except Exception: # pylint: disable=broad-except
_LOGGER.exception(
"Error loading libturbojpeg; Cameras may impact HomeKit performance"
"Error loading libturbojpeg; Camera snapshot performance will be sub-optimal"
)
TurboJPEGSingleton.__instance = False