Escape slash in filename when downloading (#62)

This commit is contained in:
Alex Ling 2020-06-09 09:25:20 +00:00
parent 717d44e029
commit bac7be5163

View File

@ -135,7 +135,9 @@ module Rename
else else
e.render hash e.render hash
end end
end.join.strip end.join
.strip
.gsub("/", "_")
end end
end end
end end