@tstdl/base 0.92.110 → 0.92.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.92.110",
3
+ "version": "0.92.111",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -118,7 +118,7 @@ let PostgresQueue = class PostgresQueue extends Queue {
118
118
  .with(selection)
119
119
  .update(job)
120
120
  .set(this.#dequeueUpdate)
121
- .where(inArray(job.id, selection))
121
+ .where(inArray(job.id, this.#repository.session.select().from(selection)))
122
122
  .returning();
123
123
  return this.#repository.mapManyToEntity(rows);
124
124
  }