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

@@ -115,7 +115,7 @@ playlist::AppendURI(struct player_control &pc,
if (uri_has_scheme(uri)) {
song = Song::NewRemote(uri);
} else {
db = GetDatabase(IgnoreError());
db = GetDatabase();
if (db == nullptr)
return PlaylistResult::NO_SUCH_SONG;