Align style

This commit is contained in:
Andy Uhnak
2022-04-07 10:47:06 +01:00
parent dcb33a5380
commit cbd97ebeac
2 changed files with 10 additions and 4 deletions
@@ -1055,11 +1055,15 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
sectionHeaderView.accessoryView = updatedSectionHeaderView.accessoryView;
sectionHeaderView.rightAccessoryView = updatedSectionHeaderView.rightAccessoryView;
}
} else {
}
else
{
MXLogDebug(@"[RecentsViewController]: Reloading table view section %ld", indexPath.section);
[self.recentsTableView reloadSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationNone];
}
} else if (!changes) {
}
else if (!changes)
{
MXLogDebug(@"[RecentsViewController]: Reloading the entire table view");
[self refreshRecentsTable];
}