diff --git a/src/db.ts b/src/db.ts index 9f497b26..d14a9bcf 100644 --- a/src/db.ts +++ b/src/db.ts @@ -49,7 +49,7 @@ interface RelayRow { const db = new Kysely({ dialect: new DenoSqliteDialect({ - database: new Sqlite(Conf.dbPath) as any, + database: new Sqlite(Conf.dbPath), }), }); diff --git a/src/deps.ts b/src/deps.ts index 31104acf..a2c640ac 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -63,7 +63,7 @@ export { type NullableInsertKeys, sql, } from 'npm:kysely@^0.25.0'; -export { DenoSqliteDialect } from 'https://gitlab.com/soapbox-pub/kysely-deno-sqlite/-/raw/v1.0.0/mod.ts'; +export { DenoSqliteDialect } from 'https://gitlab.com/soapbox-pub/kysely-deno-sqlite/-/raw/v1.0.1/mod.ts'; export { default as tldts } from 'npm:tldts@^6.0.14'; export type * as TypeFest from 'npm:type-fest@^4.3.0';