Merge branch 'main' into feature/zoom-bridge-updates

This commit is contained in:
Andrew Welker
2021-12-21 09:08:24 -07:00
committed by GitHub
4 changed files with 15 additions and 3 deletions

View File

@@ -444,6 +444,14 @@ namespace PepperDash.Essentials
/// <returns></returns>
public bool RunDefaultCallRoute()
{
Debug.Console(2, this, "RunDefaultCallRoute() Currently Sharing Content: {0}", VideoCodec.SharingContentIsOnFeedback.BoolValue);
if (VideoCodec.SharingContentIsOnFeedback.BoolValue)
{
Debug.Console(2, this, "Currently sharing content. Ignoring request to run default call route.");
return false;
}
RunRouteAction(DefaultCodecRouteString);
return true;
}