Skip to content

Commit

Permalink
problem: we are not adding bitcoin addresses to valid rockets
Browse files Browse the repository at this point in the history
  • Loading branch information
gsovereignty committed Aug 12, 2024
1 parent 2552675 commit d52416e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stateupdaters/AssociateBitcoinAddress.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
!rocket.Included(association.Event.id)
) {
for (let a of association.Event.getMatchingTags('a')) {
if (a == rocket.ATag()) {
if (a.length == 2 && a[1] == rocket.ATag()[1]) {
let e = rocket.UpsertBitcoinAssociation(association);
if (e) {
e.ndk = $ndk;
Expand Down

0 comments on commit d52416e

Please sign in to comment.