summaryrefslogtreecommitdiff
path: root/internal/uris/uri.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/uris/uri.go')
-rw-r--r--internal/uris/uri.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/uris/uri.go b/internal/uris/uri.go
index e0b72f7de..8a8968f38 100644
--- a/internal/uris/uri.go
+++ b/internal/uris/uri.go
@@ -193,11 +193,6 @@ func IsOutboxPath(id *url.URL) bool {
return regexes.OutboxPath.MatchString(id.Path)
}
-// IsInstanceActorPath returns true if the given URL path corresponds to eg /actors/example_username
-func IsInstanceActorPath(id *url.URL) bool {
- return regexes.ActorPath.MatchString(id.Path)
-}
-
// IsFollowersPath returns true if the given URL path corresponds to eg /users/example_username/followers
func IsFollowersPath(id *url.URL) bool {
return regexes.FollowersPath.MatchString(id.Path)