Fix send_data for Windows platform #45
This commit is contained in:
parent
81e4e0bda6
commit
9173e86ee4
|
@ -6,12 +6,7 @@ module RuCaptcha
|
||||||
headers['Pragma'] = 'no-cache'
|
headers['Pragma'] = 'no-cache'
|
||||||
data = generate_rucaptcha
|
data = generate_rucaptcha
|
||||||
opts = { disposition: 'inline', type: 'image/gif' }
|
opts = { disposition: 'inline', type: 'image/gif' }
|
||||||
|
send_data data, opts
|
||||||
if Gem.win_platform?
|
|
||||||
send_file data, opts
|
|
||||||
else
|
|
||||||
send_data data, opts
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue