Detect file type if none given.

This commit is contained in:
eal 2018-02-04 15:14:08 +02:00
parent 61c16193de
commit 286f6698ee
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ defmodule Pleroma.Upload 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