aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/queue/QueueSave.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/queue/QueueSave.cxx b/src/queue/QueueSave.cxx
index 28fc361d7..5f47a0fac 100644
--- a/src/queue/QueueSave.cxx
+++ b/src/queue/QueueSave.cxx
@@ -50,9 +50,14 @@ queue_save_full_song(FILE *fp, const DetachedSong &song)
static void
queue_save_song(FILE *fp, int idx, const DetachedSong &song)
{
- if (song.IsInDatabase())
+ if (song.IsInDatabase() &&
+ song.GetStartMS() == 0 && song.GetEndMS() == 0)
+ /* use the brief format (just the URI) for "full"
+ database songs */
queue_save_database_song(fp, idx, song);
else
+ /* use the long format (URI, range, tags) for the
+ rest, so all metadata survives a MPD restart */
queue_save_full_song(fp, song);
}