From afdf8a014236452e098ab1266c9a9315824f8103 Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Mon, 19 Dec 2022 10:41:43 -0500 Subject: url helpers, cgi response format --- resources/profile.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'resources/profile.go') diff --git a/resources/profile.go b/resources/profile.go index b62a9c5..971b11c 100644 --- a/resources/profile.go +++ b/resources/profile.go @@ -1,17 +1,14 @@ package resources import ( - "fmt" - "net/url" - "path" - + "git.capotej.com/capotej/communique/urls" "github.com/go-fed/activity/streams" ) func RenderProfile(name, domain string) (map[string]interface{}, error) { - u, err := url.Parse(path.Join("https://", domain, "actors", name, "inbox")) + u, err := urls.UrlInbox(name, domain) if err != nil { - return nil, fmt.Errorf("could not partse url: %w", err) + return nil, err } inb := streams.NewActivityStreamsInboxProperty() -- cgit v1.2.3