diff options
Diffstat (limited to 'internal/web/web.go')
-rw-r--r-- | internal/web/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/web/web.go b/internal/web/web.go index c53433730..5c1c4750d 100644 --- a/internal/web/web.go +++ b/internal/web/web.go @@ -62,7 +62,7 @@ const ( type Module struct { processor *processing.Processor eTagCache cache.Cache[string, eTagCacheEntry] - isURIBlocked func(context.Context, *url.URL) (bool, db.Error) + isURIBlocked func(context.Context, *url.URL) (bool, error) } func New(db db.DB, processor *processing.Processor) *Module { |