We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f766fc commit d2aa171Copy full SHA for d2aa171
src/Event/Repository/AsynchronousDatabase.php
@@ -43,7 +43,7 @@ public function load(int $limit): Collection
43
44
foreach ($records as $record)
45
{
46
- $keys[] = $this->db->escape($record['key']);
+ $keys[] = trim($this->db->escape($record['key']), '\'');
47
48
$collection[] = new Entity\Task($record->toArray());
49
}
0 commit comments