diff --git a/lib/storage/providers/SQLiteProvider.ts b/lib/storage/providers/SQLiteProvider.ts index 080bbf7e..1e5f81da 100644 --- a/lib/storage/providers/SQLiteProvider.ts +++ b/lib/storage/providers/SQLiteProvider.ts @@ -63,7 +63,7 @@ const provider: StorageProvider = { const result = rows?.item(0); if (result == null) { - return undefined; + return null; } return JSON.parse(result.valueJSON);