From aabaf0fd2fbf441800171e48b826c88017083fb5 Mon Sep 17 00:00:00 2001 From: Martastain Date: Wed, 6 Nov 2024 22:12:09 +0100 Subject: [PATCH] fix: getPlayoutChannel helper --- frontend/src/nebula.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/nebula.js b/frontend/src/nebula.js index 2008f883..b6f3884e 100644 --- a/frontend/src/nebula.js +++ b/frontend/src/nebula.js @@ -64,7 +64,7 @@ const nebula = { }, getPlayoutChannel(id_channel) { - for (const channel of this.settings?.playoutChannels || []) { + for (const channel of this.settings?.playout_channels || []) { if (channel.id === id_channel) return channel } },