Skip to content

Commit

Permalink
don't display extra text if visibility == local
Browse files Browse the repository at this point in the history
  • Loading branch information
sk22 committed Oct 19, 2023
1 parent 70f5ec7 commit 1711682
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ private void updateScheduledAt(Instant scheduledAt) {
}

private void updateHeaders() {
UiUtils.setExtraTextInfo(getContext(), selfExtraText, false, false, localOnly || statusVisibility==StatusPrivacy.LOCAL, null);
UiUtils.setExtraTextInfo(getContext(), selfExtraText, false, false, localOnly, null);
if (replyTo != null) UiUtils.setExtraTextInfo(getContext(), extraText, true, false, replyTo.localOnly || replyTo.visibility==StatusPrivacy.LOCAL, replyTo.account);
}

Expand Down

0 comments on commit 1711682

Please sign in to comment.