-
Notifications
You must be signed in to change notification settings - Fork 283
Fix/15131 Quick actions are not reduced correctly in hibernation state #5169
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,13 @@ final class HealthCertificateCoordinator { | |
private var validationCoordinator: HealthCertificateValidationCoordinator? | ||
|
||
private var infoScreenShown: Bool { | ||
get { store.healthCertificateInfoScreenShown } | ||
get { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what's the usage of this change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good question! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess that's a first (and maybe the only) move reg. corona-warn-app/cwa-documentation#950? |
||
if CWAHibernationProvider.shared.isHibernationState { | ||
return true | ||
} else { | ||
return store.healthCertificateInfoScreenShown | ||
} | ||
} | ||
set { store.healthCertificateInfoScreenShown = newValue } | ||
} | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.