fix(exports): properly handle export format not being handled

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2023-06-20 15:00:29 +02:00
parent 96b4ef08c6
commit a76b1ca66d
2 changed files with 9 additions and 5 deletions

View File

@@ -26,10 +26,13 @@ defmodule Mobilizon.Web.ExportController do
{:error, :not_found}
end
else
{:error,
dgettext("errors", "Export to format %{format} is not enabled on this instance",
format: format
)}
send_resp(
conn,
404,
dgettext("errors", "Export to format %{format} is not enabled on this instance",
format: format
)
)
end
end
end