summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tagtree.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 711ca63941..ef4591fe04 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -1581,7 +1581,12 @@ static bool insert_all_playlist(struct tree_context *c, int position, bool queue
{
if (playlist_remove_all_tracks(NULL) == 0)
position = PLAYLIST_INSERT_LAST;
- else return -1; }
+ else
+ {
+ cpu_boost(false);
+ return false;
+ }
+ }
if (position == PLAYLIST_INSERT_FIRST)
{