From 48b91ca23952545c4520b6ba53c254b5b636ca94 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:20:56 +0100 Subject: [PATCH] [bugfix] Fix error string typo (#2873) --- internal/processing/fedi/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) }