DDVC01 - MOB ATC messaging changes

This commit is contained in:
Heath Volmer
2018-09-27 10:50:23 -06:00
parent 78668e8abb
commit 5014343fa3
3 changed files with 46 additions and 45 deletions

View File

@@ -479,7 +479,7 @@ namespace PepperDash.Essentials.Room.Cotija
co.SourceLists.Add("default", newSl);
// build "audioCodec" config if we need
if (string.IsNullOrEmpty(rmProps.AudioCodecKey))
if (!string.IsNullOrEmpty(rmProps.AudioCodecKey))
{
var acFavs = new List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem>();
for (uint i = 0; i < 4; i++)
@@ -511,7 +511,7 @@ namespace PepperDash.Essentials.Room.Cotija
Properties = JToken.FromObject(acProps)
};
co.Devices.Add(acConf);
}
}
Debug.Console(0, this, "******* CONFIG FROM DDVC: \r{0}", JsonConvert.SerializeObject(ConfigReader.ConfigObject, Formatting.Indented));