fix(essentials): Attempt to catch case where meeting popup may not be dismissed if the room is on and the meeting is no longer joinable

This commit is contained in:
Neil Dorin
2021-08-26 17:38:49 -06:00
parent c84ec4c899
commit 47035d8386

View File

@@ -477,6 +477,10 @@ namespace PepperDash.Essentials
if (CurrentRoom.OnFeedback.BoolValue
&& lastMeetingDismissed == meeting)
{
// meeting no longer joinable, hide popup
if(meeting == null)
HideNextMeetingPopup();
return;
}