From e3469969f5b3630399990f4d63a50c90a5e17e77 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Mon, 26 Feb 2024 07:39:28 +0000 Subject: [PATCH] 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 --- src/lib/components/proposals/StatusSelector.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/components/proposals/StatusSelector.svelte b/src/lib/components/proposals/StatusSelector.svelte index 66c46a3..504c52b 100644 --- a/src/lib/components/proposals/StatusSelector.svelte +++ b/src/lib/components/proposals/StatusSelector.svelte @@ -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 {