Skip to content

Commit

Permalink
certain use case inifite event loop fix (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Antivortex authored Apr 18, 2023
1 parent 30c27a6 commit adec65e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ public void Update()
if (_previousStatus != newStatus)
{
var transition = TransitionDataFactory.CreateTransitionObj(_previousStatus, newStatus, _session);
_previousStatus = newStatus;
SessionStatusUpdated?.Invoke(transition);
_previousStatus = _session.Status;
}
}
}
Expand Down

0 comments on commit adec65e

Please sign in to comment.