Commit aca08155 authored by Max Kellermann's avatar Max Kellermann

queue/PlaylistControl: use PlaylistError::NotPlaying()

parent a71efacd
...@@ -121,11 +121,8 @@ playlist::PlayId(PlayerControl &pc, int id, Error &error) ...@@ -121,11 +121,8 @@ playlist::PlayId(PlayerControl &pc, int id, Error &error)
bool bool
playlist::PlayNext(PlayerControl &pc, Error &error) playlist::PlayNext(PlayerControl &pc, Error &error)
{ {
if (!playing) { if (!playing)
error.Set(playlist_domain, int(PlaylistResult::NOT_PLAYING), throw PlaylistError::NotPlaying();
"Not playing");
return false;
}
assert(!queue.IsEmpty()); assert(!queue.IsEmpty());
assert(queue.IsValidOrder(current)); assert(queue.IsValidOrder(current));
...@@ -173,11 +170,8 @@ playlist::PlayNext(PlayerControl &pc, Error &error) ...@@ -173,11 +170,8 @@ playlist::PlayNext(PlayerControl &pc, Error &error)
bool bool
playlist::PlayPrevious(PlayerControl &pc, Error &error) playlist::PlayPrevious(PlayerControl &pc, Error &error)
{ {
if (!playing) { if (!playing)
error.Set(playlist_domain, int(PlaylistResult::NOT_PLAYING), throw PlaylistError::NotPlaying();
"Not playing");
return false;
}
assert(!queue.IsEmpty()); assert(!queue.IsEmpty());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment