summaryrefslogtreecommitdiff
path: root/internal/processing
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-04-26 14:20:56 +0100
committerLibravatar GitHub <noreply@github.com>2024-04-26 15:20:56 +0200
commit48b91ca23952545c4520b6ba53c254b5b636ca94 (patch)
tree16b4b9d00a6ea009de17c89182ac7ab235c27753 /internal/processing
parent[performance] update remaining worker pools to use queues (#2865) (diff)
downloadgotosocial-48b91ca23952545c4520b6ba53c254b5b636ca94.tar.xz
[bugfix] Fix error string typo (#2873)
Diffstat (limited to 'internal/processing')
-rw-r--r--internal/processing/fedi/status.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/fedi/status.go b/internal/processing/fedi/status.go
index 29c6fe069..c6d611eee 100644
--- a/internal/processing/fedi/status.go
+++ b/internal/processing/fedi/status.go
@@ -62,7 +62,7 @@ func (p *Processor) StatusGet(ctx context.Context, requestedUser string, statusI
}
if !visible {
- const text = "status not vising to requesting account"
+ const text = "status not visible to requesting account"
return nil, gtserror.NewErrorNotFound(errors.New(text))
}