From 4938071f70c1177a4280ef4f11daa760d449eecc Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 29 Sep 2022 11:22:13 -0600 Subject: [PATCH] fix(essentials): Updates the func to return whether sharing content --- .../Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs index 438e4400..36b13c19 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs @@ -252,7 +252,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom protected override Func SharingContentIsOnFeedbackFunc { - get { return () => Status.Call.Sharing.IsSharing; } + get { return () => Status.Sharing.isAirHostClientConnected || Status.Sharing.isDirectPresentationConnected || Status.Sharing.isSharingBlackMagic; } } protected Func FarEndIsSharingContentFeedbackFunc