Skip to content

Commit

Permalink
Fixed string formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradbury committed Aug 28, 2024
1 parent 82d05ce commit 5726d0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class ReaderExpandableTagsView @JvmOverloads constructor(
fun overflowChipText(resources: Resources, hiddenChipsCount: Int): String =
String.format(
resources.getString(R.string.reader_expandable_tags_view_overflow_indicator_expand_title_new),
hiddenChipsCount
hiddenChipsCount.toString()
)

@ColorRes
Expand Down

0 comments on commit 5726d0d

Please sign in to comment.