aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/upload.ex
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-11-10 17:37:54 +0100
committerRoger Braun <roger@rogerbraun.net>2017-11-10 17:37:54 +0100
commit1d3d66a841253a244e5166726ba4f3d1f21651c3 (patch)
treeb1d0c230d9bfebd139b527392e5399fa647781d9 /lib/pleroma/upload.ex
parent6e9c22c0afaa67f0b94f602eceef5c57b7c9192f (diff)
parent1b8ad9f731708a3231ef01a5db1fba2516d48d98 (diff)
downloadpleroma-1d3d66a841253a244e5166726ba4f3d1f21651c3.tar.gz
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into develop
Diffstat (limited to 'lib/pleroma/upload.ex')
-rw-r--r--lib/pleroma/upload.ex10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/pleroma/upload.ex b/lib/pleroma/upload.ex
index 2717377a3..d5723f5de 100644
--- a/lib/pleroma/upload.ex
+++ b/lib/pleroma/upload.ex
@@ -8,11 +8,19 @@ defmodule Pleroma.Upload do
result_file = Path.join(upload_folder, file.filename)
File.cp!(file.path, result_file)
+ # fix content type on some image uploads
+ matches = Regex.named_captures(~r/\.(?<ext>(jpg|jpeg|png|gif))$/i, file.filename)
+ content_type = if file.content_type == "application/octet-stream" and matches do
+ if matches["ext"] == "jpg", do: "image/jpeg", else: "image/#{matches["ext"]}"
+ else
+ file.content_type
+ end
+
%{
"type" => "Image",
"url" => [%{
"type" => "Link",
- "mediaType" => file.content_type,
+ "mediaType" => content_type,
"href" => url_for(Path.join(uuid, :cow_uri.urlencode(file.filename)))
}],
"name" => file.filename,