Do not update providers in-app

This commit is contained in:
Davide De Rosa 2020-12-12 17:18:57 +01:00
parent 5cb72de837
commit a6f59f72bb
1 changed files with 7 additions and 7 deletions

View File

@ -146,15 +146,15 @@ class WizardProviderViewController: UITableViewController, StrongTableHost {
return return
} }
ProductManager.shared.listProducts { (products, error) in // ProductManager.shared.listProducts { (products, error) in
hud.hide() // hud.hide()
if let error = error { // if let error = error {
log.error("Unable to list products: \(error)") // log.error("Unable to list products: \(error)")
return // return
} // }
self?.reloadModel() self?.reloadModel()
self?.tableView.reloadData() self?.tableView.reloadData()
} // }
} }
} }