From e4dc7972ec35d891287598f33a1b4e1461ddc3fc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 29 Aug 2018 16:36:45 +0100 Subject: [PATCH] Missing handling of CHANGE_TYPE_CANCELLED causing another hang. --- src/lib/player.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/player.cc b/src/lib/player.cc index 5202bbbe0..b939995ef 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -237,6 +237,8 @@ Player::playlist_content_change (ChangeType type, int property, bool frequent) } else if (type == CHANGE_TYPE_DONE) { /* A change in our content has gone through. Re-build our pieces. */ setup_pieces (); + } else if (type == CHANGE_TYPE_CANCELLED) { + _suspended = false; } Change (type, property, frequent); -- 2.30.2