Skip to content
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.

Commit

Permalink
fix example bug
Browse files Browse the repository at this point in the history
  • Loading branch information
webcarrot committed Jul 27, 2014
1 parent 7978cf0 commit 4124120
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -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");
}
Expand Down

0 comments on commit 4124120

Please sign in to comment.