Fixed crashes from the AppStore #siskinim-259

This commit is contained in:
Andrzej Wójcik 2020-12-17 10:43:35 +01:00
parent cbb75b117f
commit 2edeb83f32
No known key found for this signature in database
GPG key ID: 2BE28BB9C1B5FF02
2 changed files with 5 additions and 3 deletions

View file

@ -159,8 +159,10 @@ class ChannelJoinViewController: UITableViewController {
}
func operationEnded() {
self.tableView.refreshControl?.endRefreshing();
self.tableView.refreshControl = nil;
if let tableView = self.tableView {
tableView.refreshControl?.endRefreshing();
tableView.refreshControl = nil;
}
}
@IBAction func textFieldChanged(_ sender: Any) {

View file

@ -234,7 +234,7 @@ Have it enabled will keep synchronized copy of your messages exchanged using \(a
controller.descriptionField.text = """
Your server for account \(account) supports push notifications.
With this feature enabled Tigase iOS Messenger can be automatically notified about new messages when it is in background or stopped. Notifications about new messages will be forwarded to our push component and delivered to the device. These notifications will contain message senders jid and part of a message.
With this feature enabled Siskin IM can be automatically notified about new messages when it is in background or stopped. Notifications about new messages will be forwarded to our push component and delivered to the device. These notifications will contain message senders jid and part of a message.
""";
controller.onSkip = {
controller.dismiss(animated: true, completion: onNext);