Elixir 1.17 warnings for parens
Function calls must have parens
This commit is contained in:
parent
ccbbee7963
commit
d3cccce9fd
@ -16,6 +16,6 @@ defmodule Pleroma.Search do
|
|||||||
|
|
||||||
def healthcheck_endpoints do
|
def healthcheck_endpoints do
|
||||||
search_module = Pleroma.Config.get([Pleroma.Search, :module])
|
search_module = Pleroma.Config.get([Pleroma.Search, :module])
|
||||||
search_module.healthcheck_endpoints
|
search_module.healthcheck_endpoints()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -163,7 +163,7 @@ defmodule Pleroma.Web do
|
|||||||
"""
|
"""
|
||||||
def safe_render_many(collection, view, template, assigns \\ %{}) do
|
def safe_render_many(collection, view, template, assigns \\ %{}) do
|
||||||
Enum.map(collection, fn resource ->
|
Enum.map(collection, fn resource ->
|
||||||
as = Map.get(assigns, :as) || view.__resource__
|
as = Map.get(assigns, :as) || view.__resource__()
|
||||||
assigns = Map.put(assigns, as, resource)
|
assigns = Map.put(assigns, as, resource)
|
||||||
safe_render(view, template, assigns)
|
safe_render(view, template, assigns)
|
||||||
end)
|
end)
|
||||||
|
@ -204,7 +204,7 @@ defmodule Pleroma.Web.ActivityPub.MRF do
|
|||||||
if function_exported?(policy, :config_description, 0) do
|
if function_exported?(policy, :config_description, 0) do
|
||||||
description =
|
description =
|
||||||
@default_description
|
@default_description
|
||||||
|> Map.merge(policy.config_description)
|
|> Map.merge(policy.config_description())
|
||||||
|> Map.put(:group, :pleroma)
|
|> Map.put(:group, :pleroma)
|
||||||
|> Map.put(:tab, :mrf)
|
|> Map.put(:tab, :mrf)
|
||||||
|> Map.put(:type, :group)
|
|> Map.put(:type, :group)
|
||||||
|
@ -139,7 +139,7 @@ defmodule Pleroma.Web.ApiSpec.StreamingOperation do
|
|||||||
end
|
end
|
||||||
|
|
||||||
defp get_schema(%Schema{} = schema), do: schema
|
defp get_schema(%Schema{} = schema), do: schema
|
||||||
defp get_schema(schema), do: schema.schema
|
defp get_schema(schema), do: schema.schema()
|
||||||
|
|
||||||
defp server_sent_event_helper(name, description, type, payload, opts \\ []) do
|
defp server_sent_event_helper(name, description, type, payload, opts \\ []) do
|
||||||
payload_type = Keyword.get(opts, :payload_type, :json)
|
payload_type = Keyword.get(opts, :payload_type, :json)
|
||||||
|
@ -68,7 +68,7 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Chat do
|
|||||||
},
|
},
|
||||||
"id" => "1",
|
"id" => "1",
|
||||||
"unread" => 2,
|
"unread" => 2,
|
||||||
"last_message" => ChatMessage.schema().example(),
|
"last_message" => ChatMessage.schema().example,
|
||||||
"updated_at" => "2020-04-21T15:06:45.000Z"
|
"updated_at" => "2020-04-21T15:06:45.000Z"
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user