From a28690bbb4c68f72e8a74ed0539e2ec6bc18b2aa Mon Sep 17 00:00:00 2001 From: Simon Hornby Date: Mon, 24 Oct 2022 10:44:20 +0200 Subject: [PATCH] Update src/lib/db/group-store.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gastón Fournier --- src/lib/db/group-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/db/group-store.ts b/src/lib/db/group-store.ts index 6197c1b905..70bd7f1a59 100644 --- a/src/lib/db/group-store.ts +++ b/src/lib/db/group-store.ts @@ -68,7 +68,7 @@ export default class GroupStore private db: Knex | Knex.Transaction; constructor(db: Knex) { - super(); + super(db); this.db = db; }