Fix incorrect progress string on widget

If option "pref_followQueue_title" is disabled, when played episode #1 is ended and next episode #2 is loaded, progress string on widget show incorrect information about position and duration of episode, because it show (position / duration) of ended episode #1 instead of (position / duration) of loaded episode #2.
This commit is contained in:
Ptilopsis Leucotis 2019-10-29 11:11:12 +03:00 committed by Gogs
parent 3b51af00e3
commit 917e60fbe2
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ public class PlayerWidgetJobService extends SafeJobIntentService {
}
private String getProgressString(int position, int duration, float speed) {
if (position > 0 && duration > 0) {
if (position >= 0 && duration > 0) {
TimeSpeedConverter converter = new TimeSpeedConverter(speed);
position = converter.convert(position);
duration = converter.convert(duration);