From ecba28c9cdda621d0c012b8a0926ee36989aee0f Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 13 Nov 2020 13:32:04 -0700 Subject: [PATCH] Moves the stop sharing and standby commands to later in the EndShutdown() sequence --- PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs index 255994fd..2ed2da15 100644 --- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs +++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs @@ -383,8 +383,6 @@ namespace PepperDash.Essentials protected override void EndShutdown() { VideoCodec.EndAllCalls(); - VideoCodec.StopSharing(); - VideoCodec.StandbyActivate(); SetDefaultLevels(); @@ -395,6 +393,8 @@ namespace PepperDash.Essentials Debug.Console(0, this, Debug.ErrorLogLevel.Notice, "Shutting down room"); RunRouteAction("roomOff"); + VideoCodec.StopSharing(); + VideoCodec.StandbyActivate(); } ///