forked from AkkomaGang/akkoma
Detect file type if none given.
This commit is contained in:
parent
61c16193de
commit
286f6698ee
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ def store(%Plug.Upload{} = file) do
|
|||
File.cp!(file.path, result_file)
|
||||
|
||||
# fix content type on some image uploads
|
||||
content_type = if file.content_type == "application/octet-stream" do
|
||||
content_type = if file.content_type in [nil, "application/octet-stream"] do
|
||||
get_content_type(file.path)
|
||||
else
|
||||
file.content_type
|
||||
|
|
Loading…
Reference in a new issue