Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #5173 from corona-warn-app/fix/15173-Zertifikate-I…
Browse files Browse the repository at this point in the history
…nfo-Screen-does-not-popup-after-installation

Fix/15173 Zertifikate-Info-Screen does not popup after installation
  • Loading branch information
flxschmidt authored May 8, 2023
2 parents 6c3f850 + 40f4ff7 commit 915ba2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,7 @@ final class HealthCertificateCoordinator {
private var validationCoordinator: HealthCertificateValidationCoordinator?

private var infoScreenShown: Bool {
get {
if CWAHibernationProvider.shared.isHibernationState {
return true
} else {
return store.healthCertificateInfoScreenShown
}
}
get { store.healthCertificateInfoScreenShown }
set { store.healthCertificateInfoScreenShown = newValue }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,7 @@ final class HealthCertificatesTabCoordinator {
private var printNavigationController: UINavigationController!

private var infoScreenShown: Bool {
get {
if CWAHibernationProvider.shared.isHibernationState {
return true
} else {
return store.healthCertificateInfoScreenShown
}
}
get { store.healthCertificateInfoScreenShown }
set { store.healthCertificateInfoScreenShown = newValue }
}

Expand Down

0 comments on commit 915ba2f

Please sign in to comment.