aboutsummaryrefslogtreecommitdiff
path: root/resources/profile.go
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2022-12-19 00:29:19 +0000
committerJulio Capote <jcapote@gmail.com>2022-12-19 00:29:19 +0000
commit2ee94a66d89de9eb0461f250251af7776aef9976 (patch)
tree9cb4a3800c18f4f6b5df84d6cb0d861ff6ae8afc /resources/profile.go
parent4f8325f5df55628544f13937975f38c6ef5d17ab (diff)
downloadcommunique-2ee94a66d89de9eb0461f250251af7776aef9976.tar.gz
cleanup
Diffstat (limited to '')
-rw-r--r--resources/profile.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/profile.go b/resources/profile.go
index 23b2844..090075c 100644
--- a/resources/profile.go
+++ b/resources/profile.go
@@ -1,6 +1,7 @@
package resources
import (
+ "fmt"
"net/url"
"path"
@@ -10,7 +11,7 @@ import (
func RenderProfile(name, domain string) (map[string]interface{}, error) {
u, err := url.Parse(path.Join("https://", domain, "actors", name, "inbox"))
if err != nil {
- panic(err)
+ return nil, fmt.Errorf("could not partse url: %w", err)
}
inb := streams.NewActivityStreamsInboxProperty()