From 36818e43e9b8ced7670f7c8455663626526d9e07 Mon Sep 17 00:00:00 2001 From: Barry Deen Date: Tue, 29 Oct 2024 18:43:14 -0400 Subject: [PATCH] fix service url --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 81b366a..ffc06de 100644 --- a/main.go +++ b/main.go @@ -287,7 +287,7 @@ func makeNewRelay(relayType string, w http.ResponseWriter, r *http.Request) *kha } }) - bl := blossom.New(outboxRelay, outboxRelay.ServiceURL) + bl := blossom.New(outboxRelay, "https://"+config.RelayURL) bl.Store = blossom.EventStoreBlobIndexWrapper{Store: outboxDB, ServiceURL: bl.ServiceURL} bl.StoreBlob = append(bl.StoreBlob, func(ctx context.Context, sha256 string, body []byte) error {