forked from AkkomaGang/akkoma
Merge branch 'fix/no-image-upload-filetype' into 'develop'
Detect file type if none given. See merge request pleroma/pleroma!62
This commit is contained in:
commit
8df0aee889
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)
|
File.cp!(file.path, result_file)
|
||||||
|
|
||||||
# fix content type on some image uploads
|
# 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)
|
get_content_type(file.path)
|
||||||
else
|
else
|
||||||
file.content_type
|
file.content_type
|
||||||
|
|
Loading…
Reference in a new issue