From 4c331d5cfd0f341e60e7c7510df6e18b0af845f2 Mon Sep 17 00:00:00 2001 From: Andrew <4033636+ghobs91@users.noreply.github.com> Date: Thu, 10 Aug 2023 00:19:35 +0000 Subject: [PATCH] fixed format for agora links --- utils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.go b/utils.go index 7a23727..8fea2eb 100644 --- a/utils.go +++ b/utils.go @@ -108,7 +108,7 @@ func generateClientList(code string, event *nostr.Event) []ClientReference { {Name: "Snort", URL: "https://Snort.social/e/" + code}, {Name: "Coracle", URL: "https://coracle.social/" + code}, {Name: "Satellite", URL: "https://satellite.earth/thread/" + event.ID}, - {Name: "Agora", URL: "https://agorasocial.app/" + code}, + {Name: "Agora", URL: "https://agorasocial.app/" + event.ID}, {Name: "Iris", URL: "https://iris.to/" + code}, {Name: "Yosup", URL: "https://yosup.app/thread/" + event.ID}, {Name: "Primal", URL: "https://primal.net/thread/" + event.ID}, @@ -122,7 +122,7 @@ func generateClientList(code string, event *nostr.Event) []ClientReference { {Name: "Snort", URL: "https://snort.social/p/" + code}, {Name: "Coracle", URL: "https://coracle.social/" + code}, {Name: "Satellite", URL: "https://satellite.earth/@" + code}, - {Name: "Agora", URL: "https://agorasocial.app/" + code}, + {Name: "Agora", URL: "https://agorasocial.app/people/" + event.PubKey}, {Name: "Iris", URL: "https://iris.to/" + code}, {Name: "Yosup", URL: "https://yosup.app/profile/" + event.PubKey}, {Name: "Primal", URL: "https://primal.net/profile/" + event.PubKey},