Playlist*, Queue: use GetDatabase() overload without Error

Don't use IgnoreError() when there's an overload that does not try to
give us one.
This commit is contained in:
Max Kellermann
2013-10-22 00:46:02 +02:00
parent fc05768374
commit 3f899f83ff
4 changed files with 4 additions and 4 deletions

View File

@@ -114,7 +114,7 @@ queue_load_song(TextFile &file, const char *line, queue &queue)
if (uri_has_scheme(uri)) {
song = Song::NewRemote(uri);
} else {
db = GetDatabase(IgnoreError());
db = GetDatabase();
if (db == nullptr)
return;