private void Refresh(Topic topic)
 {
     Communities.GetTopic(topic.Id, refreshed =>
     {
         _items[_items.FindIndex(item => item == topic)] = refreshed;
     }, error => _console.LogE(error.ToString()));
 }