Commit 7ad7caa2 authored by Max Kellermann's avatar Max Kellermann

queue/PlaylistUpdate: extend catch clause

parent 6d1710c7
......@@ -36,7 +36,7 @@ UpdatePlaylistSong(const Database &db, DetachedSong &song)
const LightSong *original;
try {
original = db.GetSong(song.GetURI(), IgnoreError());
} catch (DatabaseError) {
} catch (const std::runtime_error &e) {
return false;
}
......
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