Browse Source

Add missing dot for remote image (#7751)

pull/4/head
Yamagishi Kazutoshi 5 years ago
committed by Eugen Rochko
parent
commit
b7b331ad0d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/models/concerns/remotable.rb

+ 5
- 1
app/models/concerns/remotable.rb View File

@ -69,7 +69,11 @@ module Remotable
return if type.nil?
type.extensions.first
extname = type.extensions.first
return if extname.nil?
".#{extname}"
end
def parse_content_type(content_type)

Loading…
Cancel
Save