Skip to content

Commit

Permalink
Hide language for service sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Apr 19, 2024
1 parent 33b3188 commit 9ef7a85
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,12 @@ internal fun SessionRow(

private fun UISession.subtitle() = buildString {
append(formattedDuration())
append(" / $room")
val emoji = EmojiUtils.getLanguageInEmoji(language)
if (emoji != null) {
append(" / $emoji")
if (!isServiceSession ) {
append(" / $room")
val emoji = EmojiUtils.getLanguageInEmoji(language)
if (emoji != null) {
append(" / $emoji")
}
}
}

Expand Down

0 comments on commit 9ef7a85

Please sign in to comment.