mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[bugfix] return 400 Bad Request on more cases of malformed AS data (#2399)
This commit is contained in:
2
internal/cache/util.go
vendored
2
internal/cache/util.go
vendored
@ -34,7 +34,7 @@ var SentinelError = errors.New("BUG: error should not be returned") //nolint:rev
|
||||
// ignoreErrors is an error matching function used to signal which errors
|
||||
// the result caches should NOT hold onto. these amount to anything non-permanent.
|
||||
func ignoreErrors(err error) bool {
|
||||
return !errorsv2.Comparable(
|
||||
return !errorsv2.IsV2(
|
||||
err,
|
||||
|
||||
// the only cacheable errs,
|
||||
|
Reference in New Issue
Block a user