Skip to content
Snippets Groups Projects
Commit 86c007dd authored by kaniini's avatar kaniini
Browse files

upload: strip exif data before finalizing the file path

parent e95d958b
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,8 @@ defmodule Pleroma.Upload do
upload_folder = get_upload_path(uuid, should_dedupe)
url_path = get_url(name, uuid, should_dedupe)
strip_exif_data(content_type, file.path)
File.mkdir_p!(upload_folder)
result_file = Path.join(upload_folder, name)
......@@ -18,8 +20,6 @@ defmodule Pleroma.Upload do
File.cp!(file.path, result_file)
end
strip_exif_data(content_type, result_file)
%{
"type" => "Document",
"url" => [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment