Skip to content

Commit

Permalink
fix(extended-footer): make it appear on top of the standard post footer
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed Mar 17, 2024
1 parent d8a88d1 commit ad1de60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ else if(item instanceof SpoilerStatusDisplayItem spoiler){

for (int deleteThisItem : deleteTheseItems) itemsToModify.remove(deleteThisItem);
if(s.id.equals(mainStatus.id)) {
items.add(new ExtendedFooterStatusDisplayItem(s.id, this, accountID, s.getContentStatus()));
items.add(items.size()-1, new ExtendedFooterStatusDisplayItem(s.id, this, accountID, s.getContentStatus()));
}
return items;
}
Expand Down

0 comments on commit ad1de60

Please sign in to comment.