mirror of
https://github.com/nginx/nginx.git
synced 2026-08-28 04:39:05 +00:00
Gunzip: fixed r->gzip_ok check.
This commit is contained in:
parent
0d7a7e91cf
commit
27b7eb17d0
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ ngx_http_gunzip_header_filter(ngx_http_request_t *r)
|
|||
return ngx_http_next_header_filter(r);
|
||||
}
|
||||
|
||||
} else if (!r->gzip_ok) {
|
||||
} else if (r->gzip_ok) {
|
||||
return ngx_http_next_header_filter(r);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue