Skip to content

Commit

Permalink
chore: Make message verifier url safe (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianrubisch authored Feb 3, 2024
1 parent b2c4a12 commit a2c7c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/turbo_boost/commands/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def turbo_stream
end

def message_verifier
ActiveSupport::MessageVerifier.new Rails.application.secret_key_base, digest: "SHA256"
ActiveSupport::MessageVerifier.new Rails.application.secret_key_base, digest: "SHA256", url_safe: true
end

# Same implementation as ActionController::Base but with public visibility
Expand Down

0 comments on commit a2c7c97

Please sign in to comment.