You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the RequestUserConsent syscall, the ui status is saved, then set to WaitingForUserPresence and finally restored at the end of the call.
However, there are early returns in the loop that cause the restoration to not happen. This is not a very large issue as the call to processrestores the status to Idle.
I think the restoration of the status should be removed as it isn't very useful since it is overridden to Idle just after.
The text was updated successfully, but these errors were encountered:
In the RequestUserConsent syscall, the ui status is saved, then set to
WaitingForUserPresence
and finally restored at the end of the call.However, there are early returns in the loop that cause the restoration to not happen. This is not a very large issue as the call to
process
restores the status toIdle
.I think the restoration of the status should be removed as it isn't very useful since it is overridden to Idle just after.
The text was updated successfully, but these errors were encountered: