Explorar o código

remove another superfluous nil-coalescing operator

B. Petersen %!s(int64=4) %!d(string=hai) anos
pai
achega
ed5e9107dc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      deltachat-ios/Controller/ContactDetailViewController.swift

+ 1 - 1
deltachat-ios/Controller/ContactDetailViewController.swift

@@ -231,7 +231,7 @@ class ContactDetailViewController: UITableViewController {
             } else {
                 headerCell.setBackupImage(name: viewModel.contact.displayName, color: viewModel.contact.color)
             }
-            headerCell.setVerified(isVerified: (viewModel.contact.isVerified ?? false))
+            headerCell.setVerified(isVerified: viewModel.contact.isVerified)
         }
         headerCell.onAvatarTap = showContactAvatarIfNeeded
     }