diff options
author | Max Kellermann <max@duempel.org> | 2015-11-11 19:57:37 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-02-28 13:31:41 +0100 |
commit | fb547260d1b992b64c0ffd78e3bc55db86f90bda (patch) | |
tree | 073b6764c09ae4e64702e77bf9376334755e9e02 /src/queue/PlaylistEdit.cxx | |
parent | 2065e3290452377b2931f3129b230c8cc536cbc8 (diff) |
player/Control: Play*() returns Error information
Diffstat (limited to 'src/queue/PlaylistEdit.cxx')
-rw-r--r-- | src/queue/PlaylistEdit.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/queue/PlaylistEdit.cxx b/src/queue/PlaylistEdit.cxx index 63699394f..1d1a03505 100644 --- a/src/queue/PlaylistEdit.cxx +++ b/src/queue/PlaylistEdit.cxx @@ -239,7 +239,8 @@ playlist::DeleteInternal(PlayerControl &pc, if (current >= 0 && !paused) /* play the song after the deleted one */ - PlayOrder(pc, current); + /* TODO: log error? */ + PlayOrder(pc, current, IgnoreError()); else { /* stop the player */ |