diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-08 14:11:14 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-08 14:11:14 +0000 |
commit | ff1d7ddc3f5e386b9c8107456c54ca5f985c7b4b (patch) | |
tree | ed1b17c06e2fce209178719a67ee4f92feeec477 /views/actor.go | |
parent | ffae32bca78d82d1cb0afd3e51a2582b0ec1f58d (diff) | |
download | communique-ff1d7ddc3f5e386b9c8107456c54ca5f985c7b4b.tar.gz |
rename last bit of profile to actor
Diffstat (limited to 'views/actor.go')
-rw-r--r-- | views/actor.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/actor.go b/views/actor.go index 36f1f0c..3069dda 100644 --- a/views/actor.go +++ b/views/actor.go @@ -22,12 +22,12 @@ func RenderActor(name, domain, pem, mediaType, summary string) (map[string]inter outboxProp := streams.NewActivityStreamsOutboxProperty() outboxProp.SetIRI(outbox) - actorUrl, err := urls.UrlProfile(name, domain) + actorUrl, err := urls.UrlActor(name, domain) if err != nil { return nil, err } - actorUrlKey, err := urls.UrlProfileKey(name, domain) + actorUrlKey, err := urls.UrlActorKey(name, domain) if err != nil { return nil, err } |