Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class CommentsInfoItem extends InfoItem {
private int streamPosition;
@Nullable
private Page replies;
private boolean repliesOpen = false;

public static final int NO_LIKE_COUNT = -1;
public static final int NO_STREAM_POSITION = -1;
Expand Down Expand Up @@ -149,4 +150,10 @@ public int getStreamPosition() {
public void setReplies(@Nullable Page replies) { this.replies = replies; }

public Page getReplies() { return this.replies; }

public void setRepliesOpen(boolean repliesOpen) {
this.repliesOpen = repliesOpen;
}

public boolean getRepliesOpen() {return this.repliesOpen; }
Comment on lines +153 to +158
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be done in the Extractor code, since this is just a UI thing

}