diff --git a/Signal/Signal-Info.plist b/Signal/Signal-Info.plist
index daba681ed..4a8f35485 100644
--- a/Signal/Signal-Info.plist
+++ b/Signal/Signal-Info.plist
@@ -5,7 +5,7 @@
BuildDetails
CarthageVersion
- 0.34.0
+ 0.33.0
OSXVersion
10.15.2
WebRTCCommit
diff --git a/Signal/src/Loki/View Controllers/GroupMembersVC.swift b/Signal/src/Loki/View Controllers/GroupMembersVC.swift
index 9fd5269d8..9333fef69 100644
--- a/Signal/src/Loki/View Controllers/GroupMembersVC.swift
+++ b/Signal/src/Loki/View Controllers/GroupMembersVC.swift
@@ -48,8 +48,18 @@ final class GroupMembersVC : UIViewController, UITableViewDataSource {
titleLabel.font = .boldSystemFont(ofSize: Values.veryLargeFontSize)
navigationItem.titleView = titleLabel
// Set up table view
+ let separator = UIView()
+ separator.backgroundColor = Colors.separator
+ separator.set(.height, to: Values.separatorThickness)
+ view.addSubview(separator)
+ separator.pin(.leading, to: .leading, of: view)
+ separator.pin(.top, to: .top, of: view)
+ separator.pin(.trailing, to: .trailing, of: view)
view.addSubview(tableView)
- tableView.pin(to: view)
+ tableView.pin(.leading, to: .leading, of: view)
+ tableView.pin(.top, to: .bottom, of: separator)
+ tableView.pin(.trailing, to: .trailing, of: view)
+ tableView.pin(.bottom, to: .bottom, of: view)
}
// MARK: Data