fix gap max_id when post before gap is filtered
hopefully fixes sk22#856
This commit is contained in:
@@ -25,6 +25,10 @@ public class GapStatusDisplayItem extends StatusDisplayItem{
|
||||
this.status=status;
|
||||
}
|
||||
|
||||
public String getMaxID(){
|
||||
return status.hasGapAfter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Type getType(){
|
||||
return Type.GAP;
|
||||
|
||||
@@ -293,7 +293,7 @@ public abstract class StatusDisplayItem{
|
||||
footer=new FooterStatusDisplayItem(parentID, fragment, statusForContent, accountID);
|
||||
footer.hideCounts=hideCounts;
|
||||
items.add(footer);
|
||||
if(status.hasGapAfter && !(fragment instanceof ThreadFragment))
|
||||
if(status.hasGapAfter!=null && !(fragment instanceof ThreadFragment))
|
||||
items.add(new GapStatusDisplayItem(parentID, fragment, status));
|
||||
}
|
||||
int i=1;
|
||||
|
||||
Reference in New Issue
Block a user