diff options
| -rw-r--r-- | lib/pleroma/application.ex | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 3b75bbe6a..9c95ce666 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -56,9 +56,7 @@ defmodule Pleroma.Application do      # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html      # for other strategies and supported options      opts = [strategy: :one_for_one, name: Pleroma.Supervisor] -    result = Supervisor.start_link(children, opts) -    :ok = after_supervisor_start() -    result +    Supervisor.start_link(children, opts)    end    defp setup_instrumenters do  | 
