fix(essentials): #927 moves SetUpRouting() to constructor

This commit is contained in:
Neil Dorin
2022-03-29 12:49:49 -06:00
parent b42d487c4c
commit b23b7cb813

View File

@@ -170,6 +170,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
MeetingIsLockedFeedback = new BoolFeedback(() => Configuration.Call.Lock.Enable );
MeetingIsRecordingFeedback = new BoolFeedback(() => Status.Call.CallRecordInfo.meetingIsBeingRecorded );
SetUpRouting();
}
public CommunicationGather PortGather { get; private set; }
@@ -489,8 +491,6 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
private void SyncState_InitialSyncCompleted(object sender, EventArgs e)
{
SetUpRouting();
SetIsReady();
}