From 4124120fa8f35386338716ce3ccd9df12d2de020 Mon Sep 17 00:00:00 2001 From: Wojciech Wierchola Date: Sun, 27 Jul 2014 12:33:00 +0200 Subject: [PATCH] fix example bug --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index bf84e92..7cd1a9c 100644 --- a/README.rst +++ b/README.rst @@ -73,9 +73,9 @@ In your VCL you could then use this vmod along the following lines:: sub vcl_deliver { if ( - req.http.Content-Type ~ "text/html" || - req.http.Content-Type ~ "text/css" || - req.http.Content-Type ~ "application/json" + resp.http.Content-Type ~ "text/html" || + resp.http.Content-Type ~ "text/css" || + resp.http.Content-Type ~ "application/json" ) { imgdata.imgdata_re("\?inline=true"); }