1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Block invalid requests instead of raising error

This commit is contained in:
Jordan Owens 2022-02-02 15:44:35 -05:00
parent f6cee1cc70
commit 759a8eb21e

View file

@ -112,6 +112,8 @@ module Rack
valid_token?(env, env['HTTP_X_CSRF_TOKEN']) ||
valid_token?(env, Request.new(env).params[options[:authenticity_param]]) ||
( options[:allow_if] && options[:allow_if].call(env) )
rescue
false
end
def mask_authenticity_token(session, path: nil, method: :post)