mirror of
https://github.com/TeamPiped/piped-proxy.git
synced 2024-08-14 23:50:45 +00:00
Fix image transcoding check.
This commit is contained in:
parent
30c0926f2e
commit
3d99bdd454
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ async fn index(req: HttpRequest) -> Result<HttpResponse, Box<dyn Error>> {
|
||||||
if rewrite {
|
if rewrite {
|
||||||
if let Some(content_type) = resp.headers().get("content-type") {
|
if let Some(content_type) = resp.headers().get("content-type") {
|
||||||
#[cfg(feature = "avif")]
|
#[cfg(feature = "avif")]
|
||||||
if disallow_image_transcoding
|
if !disallow_image_transcoding
|
||||||
&& (content_type == "image/webp" || content_type == "image/jpeg" && avif)
|
&& (content_type == "image/webp" || content_type == "image/jpeg" && avif)
|
||||||
{
|
{
|
||||||
let resp_bytes = resp.bytes().await.unwrap();
|
let resp_bytes = resp.bytes().await.unwrap();
|
||||||
|
|
Loading…
Reference in a new issue