mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
reminder: fix not getting multiple proofs
This commit is contained in:
parent
e9210118b0
commit
741df0bee6
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ async function getMintsToProofs(
|
|||
continue;
|
||||
}
|
||||
|
||||
const proof = event.tags.find(([name]) => name === 'proof')?.[1];
|
||||
const proof = event.tags.find(([name]) => name === 'proof')?.[1]; // TODO: fix, multiple 'proof' tags be exist
|
||||
if (!proof) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue