Merge pull request #4482 from lyallemma/new_branch_lyallemma

Converted timestamps to the "minutes" format using Converter.getDurat…
This commit is contained in:
H. Lehmann 2020-10-01 15:05:02 +02:00 committed by GitHub
commit 92fc091b16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class ChaptersListAdapter extends RecyclerView.Adapter<ChaptersListAdapte
duration = media.getDuration() - sc.getStart();
}
holder.duration.setText(context.getString(R.string.chapter_duration,
Converter.getDurationStringLong((int) duration)));
Converter.getDurationStringLocalized(context, (int) duration)));
if (sc.getLink() == null) {
holder.link.setVisibility(View.GONE);