From a7452727b391aae4939bf15bba0018d367b139f8 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 3 Feb 2025 23:07:10 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- scripts/db-populate-extensions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/db-populate-extensions.ts b/scripts/db-populate-extensions.ts index 15800cbf..428b591f 100644 --- a/scripts/db-populate-extensions.ts +++ b/scripts/db-populate-extensions.ts @@ -4,7 +4,7 @@ import { EventsDB } from '@/storages/EventsDB.ts'; const store = await Storages.db(); const kysely = await Storages.kysely(); -for await (const msg of store.req([{ kinds: [1] }])) { // Only kind 1 can contain media in Ditto? +for await (const msg of store.req([{}])) { if (msg[0] === 'EVENT') { const event = msg[2];