changeset 71:ef8f9c986080

scid: fix worker with . in their names
author David Demelier <markand@malikania.fr>
date Tue, 24 Jan 2023 10:04:47 +0100
parents c84312e15b77
children 3a5ecc40451a
files scid/page-api-todo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scid/page-api-todo.c	Sun Jan 22 08:07:15 2023 +0100
+++ b/scid/page-api-todo.c	Tue Jan 24 10:04:47 2023 +0100
@@ -33,7 +33,7 @@
 static void
 get(struct kreq *r)
 {
-	crud_list(r, db_job_todo(util_basename(r->path)));
+	crud_list(r, db_job_todo(util_basename(r->fullpath)));
 }
 
 void