Konrad Pozniak 2024-01-03 21:17:28 +01:00 committed by GitHub
parent 0698333665
commit 1f698e0732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -95,6 +95,13 @@ public class StatusDetailedViewHolder extends StatusBaseViewHolder {
}
}
String language = status.getLanguage();
if (language != null) {
sb.append(metadataJoiner);
sb.append(language.toUpperCase());
}
Status.Application app = status.getApplication();
if (app != null) {