pull/111/head v3.1
6543 2022-07-15 21:39:42 +02:00
rodzic bcaceda711
commit 8207586a48
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: C99B82E40B027BAE
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -199,7 +199,7 @@ func (o *Options) Upstream(ctx *fasthttp.RequestCtx, giteaClient *gitea.Client,
}
log.Debug().Msg("response")
if res != nil && res.Header.ContentLength() > fileCacheSizeLimit && ctx.Err() == nil {
if res != nil && res.Header.ContentLength() <= fileCacheSizeLimit && ctx.Err() == nil {
cachedResponse.Exists = true
cachedResponse.MimeType = mimeType
cachedResponse.Body = cacheBodyWriter.Bytes()