URI encode filenames...
This commit is contained in:
parent
9fd8640202
commit
9c35456d77
2 changed files with 5 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue