mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-10 09:15:25 +00:00
Fix invalid type
lib/pleroma/uploaders/uploader.ex:43:unknown_type Unknown type: Map.t/0.
This commit is contained in:
parent
551e90cd52
commit
2061a1d917
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ defmodule Pleroma.Uploaders.Uploader do
|
|||
|
||||
@callback delete_file(file :: String.t()) :: :ok | {:error, String.t()}
|
||||
|
||||
@callback http_callback(Plug.Conn.t(), Map.t()) ::
|
||||
@callback http_callback(Plug.Conn.t(), map()) ::
|
||||
{:ok, Plug.Conn.t()}
|
||||
| {:ok, Plug.Conn.t(), file_spec()}
|
||||
| {:error, Plug.Conn.t(), String.t()}
|
||||
|
|
Loading…
Reference in a new issue