Initialize SreenIndexIsPinnedToFb to -1. Adds debugging for xsig tokens

This commit is contained in:
Neil Dorin
2021-06-09 16:14:18 -06:00
parent 1c06e8381b
commit 7ac3f81ea5
2 changed files with 54 additions and 24 deletions

View File

@@ -90,5 +90,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
public bool HandIsRaisedFb { get; set; }
public bool IsPinnedFb { get; set; }
public int ScreenIndexIsPinnedToFb { get; set; }
public Participant()
{
// Initialize to -1 (no screen)
ScreenIndexIsPinnedToFb = -1;
}
}
}