diff options
| -rw-r--r-- | lib/pleroma/gun.ex | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pleroma/gun.ex b/lib/pleroma/gun.ex index f9c828fac..bef1c9872 100644 --- a/lib/pleroma/gun.ex +++ b/lib/pleroma/gun.ex @@ -11,9 +11,7 @@ defmodule Pleroma.Gun do    @callback await(pid(), reference()) :: {:response, :fin, 200, []}    @callback set_owner(pid(), pid()) :: :ok -  @api Pleroma.Config.get([Pleroma.Gun], Pleroma.Gun.API) - -  defp api, do: @api +  defp api, do: Pleroma.Config.get([Pleroma.Gun], Pleroma.Gun.API)    def open(host, port, opts), do: api().open(host, port, opts)  | 
