Skip to content

Commit

Permalink
show post language in metadata (#4127)
Browse files Browse the repository at this point in the history
  • Loading branch information
connyduck authored Jan 3, 2024
1 parent 0698333 commit 1f698e0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ public void onClick(@NonNull View view) {
}
}

String language = status.getLanguage();

if (language != null) {
sb.append(metadataJoiner);
sb.append(language.toUpperCase());
}

Status.Application app = status.getApplication();

if (app != null) {
Expand Down

0 comments on commit 1f698e0

Please sign in to comment.