Esempio n. 1
0
        private async Task RequestNormalComments()
        {
            if (_currCommentType == CommentType.Recommend)
            {
                _currCommentType = CommentType.Normal;
            }
            var normalComments = await DataRequester.RequestNormalComments(CurrentStoryId, _currCommentType == CommentType.Recommend?null : LastCommentId);

            if (normalComments != null)
            {
                CommentList.Last().AddRange(normalComments.Comments);
            }
        }