From d25961cc6a091732b276fcde6d6c7cb11320dac8 Mon Sep 17 00:00:00 2001 From: Johan Frick Date: Tue, 12 Sep 2023 19:05:12 +0200 Subject: [PATCH] wrong arguments to store.ts --- src/model/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/store.ts b/src/model/store.ts index d22ebdbf..7fb320a8 100644 --- a/src/model/store.ts +++ b/src/model/store.ts @@ -38,7 +38,7 @@ export default class Store { this.activePlayer = this.determineActivePlayer(activePlayerId); const section = this.config.sections?.[0]; this.hassService = new HassService(this.hass, section); - this.mediaControlService = new MediaControlService(this.hassService, this.allGroups, this.config); + this.mediaControlService = new MediaControlService(this.hassService); this.mediaBrowseService = new MediaBrowseService(this.hassService); this.predefinedGroups = this.createPredefinedGroups(); }