feat(essentials): Adds IsHost property to MeetingInfo to determine if the room is the host

This commit is contained in:
Neil Dorin
2021-08-30 17:48:37 -06:00
parent 3edb0145d0
commit 8af7b4b1db
5 changed files with 29 additions and 5 deletions

View File

@@ -152,6 +152,7 @@ namespace PepperDash.Essentials.UIDrivers.VC
// Return formatted when dialing, straight digits when in call
DialStringFeedback = new StringFeedback(() =>
{
// Format the number feedback if in dial mode and the codec is not IHasStartMeeting (ZoomRoom)
if (KeypadMode == eKeypadMode.Dial && !(Codec is IHasStartMeeting))
return GetFormattedDialString(DialStringBuilder.ToString());
else