forked from shadowfacts/Tusker
Fix crash showing custom instance on iOS 14
This commit is contained in:
parent
a5a2cd147e
commit
cf5b97d9c8
|
@ -118,7 +118,9 @@ class InstanceSelectorTableViewController: UITableViewController {
|
|||
let request = Client.getInstance()
|
||||
client.run(request) { (response) in
|
||||
var snapshot = self.dataSource.snapshot()
|
||||
snapshot.deleteItems(snapshot.itemIdentifiers(inSection: .selected))
|
||||
if snapshot.indexOfSection(.selected) != nil {
|
||||
snapshot.deleteItems(snapshot.itemIdentifiers(inSection: .selected))
|
||||
}
|
||||
|
||||
if case let .success(instance, _) = response {
|
||||
if !snapshot.sectionIdentifiers.contains(.selected) {
|
||||
|
|
Loading…
Reference in New Issue