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/outbox.go | |
parent | ffae32bca78d82d1cb0afd3e51a2582b0ec1f58d (diff) | |
download | communique-ff1d7ddc3f5e386b9c8107456c54ca5f985c7b4b.tar.gz |
rename last bit of profile to actor
Diffstat (limited to 'views/outbox.go')
-rw-r--r-- | views/outbox.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/outbox.go b/views/outbox.go index 37afed1..fcdf08e 100644 --- a/views/outbox.go +++ b/views/outbox.go @@ -16,7 +16,7 @@ func RenderOutboxCollection(name, domain string, page []models.OutboxItem) (map[ return nil, err } - actorUrl, err := urls.UrlProfile(name, domain) + actorUrl, err := urls.UrlActor(name, domain) if err != nil { return nil, err } |