mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
Ruby 3 compatibility fixes
This commit is contained in:
parent
916ec5121d
commit
01e09f8708
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ module RenderingHelper
|
||||||
# do not change string; URL is already linked
|
# do not change string; URL is already linked
|
||||||
href
|
href
|
||||||
else
|
else
|
||||||
content_tag(:a, h(href), :href => URI.escape(href))
|
content_tag(:a, h(href), :href => href)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,7 +26,7 @@ class MessageGateway < ActionMailer::Base
|
||||||
attachment = todo.attachments.build
|
attachment = todo.attachments.build
|
||||||
|
|
||||||
# create temp file
|
# create temp file
|
||||||
tmp = Tempfile.new(['attachment', '.eml'], { universal_newline: true })
|
tmp = Tempfile.new(['attachment', '.eml'], universal_newline: true)
|
||||||
tmp.write email.raw_source.gsub(/\r/, "")
|
tmp.write email.raw_source.gsub(/\r/, "")
|
||||||
|
|
||||||
# add temp file to attachment. paperclip will copy the file to the right location
|
# add temp file to attachment. paperclip will copy the file to the right location
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue