logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: 9ea55a38885c4c4142ca9a479ce0eb23886fbaa4
parent b082e1f86b412b627db04d719233432fd387a30a
Author: Mark Felder <feld@feld.me>
Date:   Tue, 22 Jul 2025 11:49:48 -0700

Fix dialyzer error in API spec: Use then/2 for OpenApiSpex.resolve_schema_modules/1 call

Diffstat:

Mlib/pleroma/web/api_spec.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/api_spec.ex b/lib/pleroma/web/api_spec.ex @@ -158,6 +158,6 @@ defmodule Pleroma.Web.ApiSpec do } } # discover request/response schemas from path specs - |> OpenApiSpex.resolve_schema_modules() + |> then(&OpenApiSpex.resolve_schema_modules/1) end end