diff --git a/pipline/_steps/upload/blurhash_async.go b/pipline/_steps/upload/blurhash_async.go index 1e66508750a6f17237a4d0a8e47217ab8cc5bb97..0e4056bb0cb93e9de27cacd69307cdbec4f89c24 100644 --- a/pipline/_steps/upload/blurhash_async.go +++ b/pipline/_steps/upload/blurhash_async.go @@ -12,11 +12,15 @@ import ( func CalculateBlurhashAsync(ctx rcontext.RequestContext, reader io.Reader, sha256hash string) chan struct{} { var err error - bhChan := make(chan struct{}) + opChan := make(chan struct{}) go func() { //goland:noinspection GoUnhandledErrorResult defer io.Copy(io.Discard, reader) // we need to flush the reader as we might end up blocking the upload - defer close(bhChan) + defer close(opChan) + + if !ctx.Config.Features.MSC2448Blurhash.Enabled { + return + } var img image.Image img, err = imaging.Decode(reader) @@ -43,5 +47,5 @@ func CalculateBlurhashAsync(ctx rcontext.RequestContext, reader io.Reader, sha25 return } }() - return bhChan + return opChan }