Retry updater when in-call app close is cancelled

This commit is contained in:
ayumi-signal 2024-02-26 16:18:50 -08:00 committed by GitHub
parent ab1ae26489
commit 9d2a043191
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 50 additions and 7 deletions

View file

@ -7,6 +7,10 @@ export function markShouldQuit(): void {
shouldQuitFlag = true;
}
export function markShouldNotQuit(): void {
shouldQuitFlag = false;
}
export function shouldQuit(): boolean {
return shouldQuitFlag;
}