B. Petersen 6 years ago
parent
commit
264206dd92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/Controller/GroupChatDetailViewController.swift

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

@@ -158,7 +158,7 @@ extension GroupChatDetailViewController: UITableViewDelegate, UITableViewDataSou
             } else {
                 let cell = tableView.dequeueReusableCell(withIdentifier: "contactCell", for: indexPath)
                 if let contactCell = cell as? ContactCell {
-                let contact = groupMembers[row - staticCellCountMemberSection]
+                    let contact = groupMembers[row - staticCellCountMemberSection]
                     contactCell.nameLabel.text = contact.name
                     contactCell.emailLabel.text = contact.email
                     contactCell.initialsLabel.text = Utils.getInitials(inputName: contact.name)