#512 add null check and return unknown if it is null

This commit is contained in:
Andrew Welker 2020-11-24 15:46:33 -07:00
parent 5ec97f2e31
commit 56e106ff32

View file

@ -205,7 +205,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
protected Func<string> SelfviewPipPositionFeedbackFunc
{
get { return () => _currentSelfviewPipPosition.Command; }
get { return () => _currentSelfviewPipPosition.Command ?? "Unknown"; }
}
protected Func<string> LocalLayoutFeedbackFunc