FileCommands: catch all exceptions

This commit is contained in:
Max Kellermann 2019-01-21 22:19:32 +01:00
parent 05db6934eb
commit 58d6ddab9e
1 changed files with 2 additions and 1 deletions

View File

@ -256,7 +256,8 @@ find_stream_art(const char *directory, Mutex &mutex)
try {
return InputStream::OpenReady(art_file.c_str(), mutex);
} catch (const std::exception &e) {}
} catch (...) {
}
}
return nullptr;
}