fix: pass parameters params in ditto:zap notification

This commit is contained in:
P. Reis 2024-09-03 22:23:15 -03:00
parent 6d9d2fd42a
commit 486dff83b9

View file

@ -70,7 +70,7 @@ const notificationsController: AppController = async (c) => {
} }
if (types.has('ditto:zap')) { if (types.has('ditto:zap')) {
filters.push({ kinds: [9735], '#p': [pubkey] }); filters.push({ kinds: [9735], '#p': [pubkey], ...params });
} }
return renderNotifications(filters, types, params, c); return renderNotifications(filters, types, params, c);