Skip to content

Commit

Permalink
Conform to new core module. (eu-digital-green-certificates#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
yspreen authored May 11, 2021
1 parent d9be243 commit 2fba61b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DGCAWallet/Components/WalletCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ class WalletCell: UITableViewCell {

typeLabel.text = cert.certTypeString
nameLabel.text = cert.fullName
dateLabel.text = String(format: l10n("list.cell.scanned-at"), dated.date.dateString)
dateLabel.text = String(format: l10n("list.cell.scanned-at"), dated.date.localDateString)
}
}
3 changes: 2 additions & 1 deletion DGCAWallet/ViewControllers/Home.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class HomeVC: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()

HCert.prefetchAllCodes = true
HCert.config.prefetchAllCodes = true
HCert.config.checkSignatures = false
LocalData.initialize {
DispatchQueue.main.async { [weak self] in
guard let self = self else {
Expand Down

0 comments on commit 2fba61b

Please sign in to comment.