diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx
index c8af5c19b..9b3d7417d 100644
--- a/src/command/FileCommands.cxx
+++ b/src/command/FileCommands.cxx
@@ -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;
 }