Skip to content

Commit d2aa171

Browse files
committed
fix
1 parent 9f766fc commit d2aa171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Event/Repository/AsynchronousDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function load(int $limit): Collection
4343

4444
foreach ($records as $record)
4545
{
46-
$keys[] = $this->db->escape($record['key']);
46+
$keys[] = trim($this->db->escape($record['key']), '\'');
4747

4848
$collection[] = new Entity\Task($record->toArray());
4949
}

0 commit comments

Comments
 (0)