We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I get a crash on macOS on the following line in AuthorizationPerformer.swift:
if await applicationStateMonitor.hasResignedActive {
changing it to the follow helps:
if let applicationStateMonitor, await applicationStateMonitor.hasResignedActive {
It seems as de delegate is called before
applicationStateMonitor = await ApplicationStateMonitor()
is completed in the start function.
start
Not sure why and not sure if my workaround is the best or have other side effects, but seems to work for me.
The text was updated successfully, but these errors were encountered:
gre4ixin
No branches or pull requests
Hi,
I get a crash on macOS on the following line in AuthorizationPerformer.swift:
if await applicationStateMonitor.hasResignedActive {
changing it to the follow helps:
if let applicationStateMonitor, await applicationStateMonitor.hasResignedActive {
It seems as de delegate is called before
applicationStateMonitor = await ApplicationStateMonitor()
is completed in the
start
function.Not sure why and not sure if my workaround is the best or have other side effects, but seems to work for me.
The text was updated successfully, but these errors were encountered: