Browse Source

fix: tag uniquie_commit in status event

rather than identifier

perhaps the an a tag for the repo event should be used also
but that is not done in this commit
master
DanConwayDev 2 years ago
parent
commit
e3469969f5
No known key found for this signature in database
GPG Key ID: 68E15486D73F75E1
  1. 3
      src/lib/components/proposals/StatusSelector.svelte

3
src/lib/components/proposals/StatusSelector.svelte

@ -42,7 +42,8 @@ @@ -42,7 +42,8 @@
.forEach((revision) => {
event.tags.push(['e', revision.id, 'mention'])
})
event.tags.push(['r', `${repo_id}`])
if ($selected_repo.unique_commit)
event.tags.push(['r', $selected_repo.unique_commit])
loading = true
let relays = [...$selected_repo.relays]
try {

Loading…
Cancel
Save