logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 551e90cd52a11dcb11840c6c4074db4a3c580703
parent f050a75b92546968f9ec351f78a48e6b6ac75a6b
Author: Mark Felder <feld@feld.me>
Date:   Sat, 20 Jan 2024 17:28:54 -0500

Fix invalid type

lib/pleroma/upload.ex:89:unknown_type
Unknown type: Map.t/0.

Diffstat:

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

diff --git a/lib/pleroma/upload.ex b/lib/pleroma/upload.ex @@ -86,7 +86,7 @@ defmodule Pleroma.Upload do end end - @spec store(source, options :: [option()]) :: {:ok, Map.t()} | {:error, any()} + @spec store(source, options :: [option()]) :: {:ok, map()} | {:error, any()} @doc "Store a file. If using a `Plug.Upload{}` as the source, be sure to use `Majic.Plug` to ensure its content_type and filename is correct." def store(upload, opts \\ []) do opts = get_opts(opts)