summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index db07613bc8..5ee5166cd9 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -1467,7 +1467,7 @@ static void audio_finish_load_track(void)
1467 must wait until after PLAYBACK_EVENT_TRACK_BUFFER, which may 1467 must wait until after PLAYBACK_EVENT_TRACK_BUFFER, which may
1468 generate a resume position. */ 1468 generate a resume position. */
1469#ifdef HAVE_TAGCACHE 1469#ifdef HAVE_TAGCACHE
1470 if (! global_settings.autoresume_enable) 1470 if (!global_settings.autoresume_enable || offset)
1471#endif 1471#endif
1472 tracks[track_widx].taginfo_ready = true; 1472 tracks[track_widx].taginfo_ready = true;
1473 1473
@@ -1482,7 +1482,7 @@ static void audio_finish_load_track(void)
1482#ifdef HAVE_TAGCACHE 1482#ifdef HAVE_TAGCACHE
1483 /* In case the autoresume feature has been enabled, finally all 1483 /* In case the autoresume feature has been enabled, finally all
1484 required data is available for the codec. */ 1484 required data is available for the codec. */
1485 if (global_settings.autoresume_enable) 1485 if (global_settings.autoresume_enable && !offset)
1486 tracks[track_widx].taginfo_ready = true; 1486 tracks[track_widx].taginfo_ready = true;
1487#endif 1487#endif
1488 1488