diff options
Diffstat (limited to '')
-rw-r--r-- | src/queue_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue_print.c b/src/queue_print.c index fb56d4ad6..b33c4f3ba 100644 --- a/src/queue_print.c +++ b/src/queue_print.c @@ -93,7 +93,7 @@ queue_search(struct client *client, const struct queue *queue, for (i = 0; i < queue_length(queue); i++) { const struct song *song = queue_get(queue, i); - if (strstrSearchTags(song, num_items, items)) + if (strstrSearchTags(song, num_items, new_items)) queue_print_song_info(client, queue, i); } |