mirror of
				https://github.com/TeamPiped/Piped-Backend.git
				synced 2024-08-14 23:51:41 +00:00 
			
		
		
		
	Merge pull request #718 from FineFindus/feat/comment-creator-reply
feat(comments): add creator reply field
This commit is contained in:
		
						commit
						2a9055d82e
					
				
					 2 changed files with 5 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -344,7 +344,7 @@ public class StreamHandlers {
 | 
			
		|||
                comments.add(new Comment(comment.getUploaderName(), getLastThumbnail(comment.getUploaderAvatars()),
 | 
			
		||||
                        comment.getCommentId(), Optional.ofNullable(comment.getCommentText()).map(Description::getContent).orElse(null), comment.getTextualUploadDate(),
 | 
			
		||||
                        substringYouTube(comment.getUploaderUrl()), repliespage, comment.getLikeCount(), comment.getReplyCount(),
 | 
			
		||||
                        comment.isHeartedByUploader(), comment.isPinned(), comment.isUploaderVerified()));
 | 
			
		||||
                        comment.isHeartedByUploader(), comment.isPinned(), comment.isUploaderVerified(), comment.hasCreatorReply()));
 | 
			
		||||
            } catch (JsonProcessingException e) {
 | 
			
		||||
                ExceptionHandler.handle(e);
 | 
			
		||||
            }
 | 
			
		||||
| 
						 | 
				
			
			@ -382,7 +382,7 @@ public class StreamHandlers {
 | 
			
		|||
                comments.add(new Comment(comment.getUploaderName(), getLastThumbnail(comment.getUploaderAvatars()),
 | 
			
		||||
                        comment.getCommentId(), Optional.ofNullable(comment.getCommentText()).map(Description::getContent).orElse(null), comment.getTextualUploadDate(),
 | 
			
		||||
                        substringYouTube(comment.getUploaderUrl()), repliespage, comment.getLikeCount(), comment.getReplyCount(),
 | 
			
		||||
                        comment.isHeartedByUploader(), comment.isPinned(), comment.isUploaderVerified()));
 | 
			
		||||
                        comment.isHeartedByUploader(), comment.isPinned(), comment.isUploaderVerified(), comment.hasCreatorReply()));
 | 
			
		||||
            } catch (JsonProcessingException e) {
 | 
			
		||||
                ExceptionHandler.handle(e);
 | 
			
		||||
            }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,10 +4,10 @@ public class Comment {
 | 
			
		|||
 | 
			
		||||
    public String author, thumbnail, commentId, commentText, commentedTime, commentorUrl, repliesPage;
 | 
			
		||||
    public int likeCount, replyCount;
 | 
			
		||||
    public boolean hearted, pinned, verified;
 | 
			
		||||
    public boolean hearted, pinned, verified, creatorReplied;
 | 
			
		||||
 | 
			
		||||
    public Comment(String author, String thumbnail, String commentId, String commentText, String commentedTime,
 | 
			
		||||
                   String commentorUrl, String repliesPage, int likeCount, int replyCount, boolean hearted, boolean pinned, boolean verified) {
 | 
			
		||||
                   String commentorUrl, String repliesPage, int likeCount, int replyCount, boolean hearted, boolean pinned, boolean verified, boolean creatorReplied) {
 | 
			
		||||
        this.author = author;
 | 
			
		||||
        this.thumbnail = thumbnail;
 | 
			
		||||
        this.commentId = commentId;
 | 
			
		||||
| 
						 | 
				
			
			@ -20,5 +20,6 @@ public class Comment {
 | 
			
		|||
        this.hearted = hearted;
 | 
			
		||||
        this.pinned = pinned;
 | 
			
		||||
        this.verified = verified;
 | 
			
		||||
        this.creatorReplied = creatorReplied;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue