URI encode filenames...

This commit is contained in:
Roger Braun 2017-08-09 15:21:34 +02:00
commit 9c35456d77
2 changed files with 5 additions and 4 deletions

View file

@ -13,7 +13,7 @@ defmodule Pleroma.Upload do
"url" => [%{
"type" => "Link",
"mediaType" => file.content_type,
"href" => url_for(Path.join(uuid, file.filename))
"href" => url_for(Path.join(uuid, URI.encode(file.filename)))
}],
"name" => file.filename,
"uuid" => uuid
@ -38,7 +38,7 @@ defmodule Pleroma.Upload do
"url" => [%{
"type" => "Link",
"mediaType" => content_type,
"href" => url_for(Path.join(uuid, filename))
"href" => url_for(Path.join(uuid, URI.encode(filename)))
}],
"name" => filename,
"uuid" => uuid