ap

An audio player suited to my tastes
Log | Files | Refs | README | LICENSE

commit ad8780c9e6a9535dbd8292b9995b39b5331cb3d1
parent 5867133708a098e24e9f1b4033726559c904a1ea
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Fri, 16 Jul 2021 21:44:26 -0700

Fix seek (and therefor play aswell) command find flags

Diffstat:
Maps/command.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aps/command.c b/aps/command.c @@ -92,7 +92,7 @@ aps_seek(struct aps *aps, int s, int argc, char **argv) { struct item *item; - item = find(aps->queue, aps->queue, argv, argc, 0); + item = find(aps->queue, aps->queue, argv, argc, FIND_NEXT); if (item == NULL) return enotfound;