fix: reblogged field boolean value takes into account viewerPubkey

This commit is contained in:
P. Reis
2024-04-19 11:12:11 -03:00
parent ae5fe1e0ac
commit e2b377d9c7
4 changed files with 7 additions and 6 deletions

View File

@@ -73,7 +73,7 @@ const streamingController: AppController = (c) => {
signal: AbortSignal.timeout(1000),
});
const status = await renderReblog(event);
const status = await renderReblog(event, { viewerPubkey: c.get('pubkey') });
if (status) {
send('update', status);
}