Skip to content

Commit

Permalink
Merge pull request #189 from greggman/patch-1
Browse files Browse the repository at this point in the history
Add "no-transform" to the no_cache headers
  • Loading branch information
brycekahle committed Nov 10, 2015
2 parents cfee1f8 + 7845866 commit ba4f62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webjs.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ exports.GenericApp = class GenericApp
return content

h_no_cache: (req, res, content) ->
res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')
res.setHeader('Cache-Control', 'no-store, no-cache, no-transform, must-revalidate, max-age=0')
return content

expect_form: (req, res, _data, next_filter) ->
Expand Down

0 comments on commit ba4f62d

Please sign in to comment.