mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[bugfix] Allow blocked accounts to show in precise search (#2321)
This commit is contained in:
@@ -52,8 +52,9 @@ func (p *Processor) StatusesGet(
|
||||
}
|
||||
|
||||
if blocked {
|
||||
err := errors.New("block exists between accounts")
|
||||
return nil, gtserror.NewErrorNotFound(err)
|
||||
// Block exists between accounts.
|
||||
// Just return empty statuses.
|
||||
return util.EmptyPageableResponse(), nil
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user