Commit ad1d5e82 authored by Max Kellermann's avatar Max Kellermann

Merge branch 'v0.20.x'

parents b2670eab 43ec96d4
......@@ -18,6 +18,10 @@ ver 0.21 (not yet released)
* mixer
- sndio: new mixer plugin
ver 0.20.14 (not yet released)
* database
- simple: fix file corruption in the presence of mount points
ver 0.20.13 (2017/12/18)
* output
- osx: set up ring buffer to hold at least 100ms
......
......@@ -83,10 +83,11 @@ directory_save(BufferedOutputStream &os, const Directory &directory)
}
for (const auto &child : directory.children) {
os.Format(DIRECTORY_DIR "%s\n", child.GetName());
if (child.IsMount())
continue;
if (!child.IsMount())
directory_save(os, child);
os.Format(DIRECTORY_DIR "%s\n", child.GetName());
directory_save(os, child);
}
for (const auto &song : directory.songs)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment