diff --git a/back/services/cron.ts b/back/services/cron.ts index 0c7a7db1..6ca0d274 100644 --- a/back/services/cron.ts +++ b/back/services/cron.ts @@ -158,7 +158,7 @@ export default class CronService { function createRegexp(text:string) { return { [Op.or]: [ - { [Op.like]: `%${searchText}&` }, + { [Op.like]: `%${text}%` }, { [Op.like]: `%${encodeURIComponent(text)}%` }, ], };