From e2772769c053698ca4c252b47da60c8ec40f02f9 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Tue, 21 May 2024 12:57:48 -0600 Subject: [PATCH] fix: renames levelControlLists to audioControlPointLists --- src/Pepperdash Core/Config/PortalConfigReader.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Pepperdash Core/Config/PortalConfigReader.cs b/src/Pepperdash Core/Config/PortalConfigReader.cs index 50f7c0e..ac50930 100644 --- a/src/Pepperdash Core/Config/PortalConfigReader.cs +++ b/src/Pepperdash Core/Config/PortalConfigReader.cs @@ -98,11 +98,11 @@ namespace PepperDash.Core.Config merged.Add("destinationLists", Merge(template["destinationLists"], system["destinationLists"], "destinationLists")); - if (system["levelControlLists"] == null) - merged.Add("levelControlLists", template["levelControlLists"]); + if (system["audioControlPointLists"] == null) + merged.Add("audioControlPointLists", template["audioControlPointLists"]); else - merged.Add("levelControlLists", - Merge(template["levelControlLists"], system["levelControlLists"], "levelControlLists")); + merged.Add("audioControlPointLists", + Merge(template["audioControlPointLists"], system["audioControlPointLists"], "audioControlPointLists")); // Template tie lines take precedence. Config tool doesn't do them at system // level anyway...