private async void DeleteComment(ViewCell cell)
        {
            Comment c = cell.BindingContext as Comment;

            if (c == null)
            {
                return;
            }

            if (!_deleting)
            {
                _deleting = true;
                await _azure.DeleteComment(c);
                await Refresh();

                _deleting = false;
            }
        }