Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
fix rounded bottom for quoted media
Browse files Browse the repository at this point in the history
closes #929
  • Loading branch information
sk22 committed Nov 13, 2023
1 parent c741f8e commit f7967d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ public Optional<StatusDisplayItem> getDisplayItemOffset(int offset){

public boolean isLastDisplayItemForStatus(){
return getNextVisibleDisplayItem()
.map(n->!n.parentID.equals(item.parentID))
.map(next->!next.parentID.equals(item.parentID) || item.inset && !next.inset)
.orElse(true);
}

Expand Down

0 comments on commit f7967d2

Please sign in to comment.