Esempio n. 1
0
        private async Task RequestRecommendComments()
        {
            var recommendComments = await DataRequester.RequestRecommendComments(CurrentStoryId, LastCommentId);

            if (recommendComments == null)
            {
                return;
            }

            CommentList.First().AddRange(recommendComments.Comments);

            if (recommendComments == null || recommendComments.Comments == null || recommendComments.Comments.Count < Misc.Page_Count)
            {
                await RequestNormalComments();
            }
        }