Commit 087fcc4e authored by Max Kellermann's avatar Max Kellermann

queue/Save: fix inverted check

That '!' accidently got lost in commit 75582d47 D'oh! Closes #162
parent 520c5205
......@@ -114,7 +114,7 @@ queue_load_song(TextFile &file, const SongLoader &loader,
song = std::make_unique<DetachedSong>(uri);
}
if (playlist_check_translate_song(*song, nullptr, loader))
if (!playlist_check_translate_song(*song, nullptr, loader))
return;
queue.Append(std::move(*song), priority);
......
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