From 67af27edf99c46f89d83fa88ba58fdeb9a805ffa Mon Sep 17 00:00:00 2001 From: Barry Deen Date: Tue, 29 Oct 2024 17:19:46 -0400 Subject: [PATCH] append blossom to service url --- init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.go b/init.go index 3b28b57..80edb81 100644 --- a/init.go +++ b/init.go @@ -231,7 +231,7 @@ func initRelays() { ) addr := fmt.Sprintf("%s:%d", config.RelayBindAddress, config.RelayPort) - bl := blossom.New(outboxRelay, addr) + bl := blossom.New(outboxRelay, addr+"/blossom") bl.Store = blossom.EventStoreBlobIndexWrapper{Store: outboxDB, ServiceURL: bl.ServiceURL} bl.StoreBlob = append(bl.StoreBlob, func(ctx context.Context, sha256 string, body []byte) error { if khatru.GetAuthed(ctx) != nPubToPubkey(config.OwnerNpub) {