1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Sidekiq::Web escape display_args too

This commit is contained in:
Julian Langschaedel 2013-10-30 23:10:23 +01:00
parent 2243426914
commit 4879701187

View file

@ -127,7 +127,7 @@ module Sidekiq
def display_args(args, truncate_after_chars = 2000)
args.map do |arg|
a = arg.inspect
truncate(a)
h(truncate(a))
end.join(", ")
end