Skip to content
Snippets Groups Projects
Commit 6c96d68f authored by Austin's avatar Austin
Browse files

add overriding truncated_namespace condition for truncating paths for digital ocean

parent 750de7d8
Branches
No related tags found
No related merge requests found
......@@ -13,10 +13,15 @@ defmodule Pleroma.Uploaders.S3 do
bucket = Keyword.fetch!(config, :bucket)
bucket_with_namespace =
if namespace = Keyword.get(config, :bucket_namespace) do
namespace <> ":" <> bucket
else
bucket
cond do
truncated_namespace = Keyword.get(config, :truncated_namespace) ->
truncated_namespace
namespace = Keyword.get(config, :bucket_namespace) ->
namespace <> ":" <> bucket
true ->
bucket
end
{:ok,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment