Merge pull request #1134 from c0mputerguru/fix-casting

Initialize media players if they have not been initialized.
This commit is contained in:
Dermot Duffy
2023-05-02 19:38:41 -07:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1270,7 +1270,7 @@ class FrigateCard extends LitElement {
return;
}
if (!this._initializer.isInitialized(InitializationAspect.MEDIA_PLAYERS)) {
if (this._initializer.isInitialized(InitializationAspect.MEDIA_PLAYERS)) {
return;
}