Fix a bug where the promise wasn't being saved, so querying multiple times was behaving poorly

This commit is contained in:
Oliver 2025-12-05 22:26:21 -07:00
parent e782ff237f
commit 70027409c3

View file

@ -135,6 +135,7 @@ export async function query(
queries.get(request.id).app = app; queries.get(request.id).app = app;
}; };
promises.set(request.id, promise);
return promise; return promise;
}; };