From 9b1cf0fbb4ff659b7d1923a4482a0f58a2abc372 Mon Sep 17 00:00:00 2001 From: giomfo Date: Thu, 4 Jun 2015 11:38:45 +0200 Subject: [PATCH] HomeViewController: Add missing table reload. --- matrixConsole/ViewController/HomeViewController.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/matrixConsole/ViewController/HomeViewController.m b/matrixConsole/ViewController/HomeViewController.m index dcf7fb3b9..3f8969ba3 100644 --- a/matrixConsole/ViewController/HomeViewController.m +++ b/matrixConsole/ViewController/HomeViewController.m @@ -208,6 +208,8 @@ NSString *const kHomeViewControllerPublicRoomCellId = @"kHomeViewControllerPubli // Report the related REST Client to retrieve public rooms [self addRestClient:mxSession.matrixRestClient]; + + [self.tableView reloadData]; } - (void)removeMatrixSession:(MXSession *)mxSession { @@ -215,6 +217,8 @@ NSString *const kHomeViewControllerPublicRoomCellId = @"kHomeViewControllerPubli // Remove the related REST Client [self removeRestClient:mxSession.matrixRestClient]; + + [self.tableView reloadData]; } #pragma mark -