diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/attachment_to_html/adapters/pdf.rb | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lib/attachment_to_html/adapters/pdf.rb b/lib/attachment_to_html/adapters/pdf.rb index 3183d1fd0..3c18e9d4a 100644 --- a/lib/attachment_to_html/adapters/pdf.rb +++ b/lib/attachment_to_html/adapters/pdf.rb @@ -42,7 +42,8 @@ module AttachmentToHTML              private              def parse_body -                match = convert.match(/<body[^>]*>(.*?)<\/body>/mi) +                conversion = convert +                match = conversion ? conversion.match(/<body[^>]*>(.*?)<\/body>/mi) : nil                  match ? match[1] : ''              end | 
