Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation warning for Elixir 1.18 #281

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/pigeon/apns/config_parser.ex
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ defmodule Pigeon.APNS.ConfigParser do
reason: "configuration is invalid",
config: opts

type ->
{:ok, type} ->
type.new(opts)
end
end

@spec config_type(any) :: module | :error
@spec config_type(any) :: {:ok, module} | :error
defp config_type(%{cert: _cert, key_identifier: _key_id}), do: :error
defp config_type(%{cert: _cert}), do: Config
defp config_type(%{key_identifier: _jwt_key}), do: JWTConfig
defp config_type(%{cert: _cert}), do: {:ok, Config}
defp config_type(%{key_identifier: _jwt_key}), do: {:ok, JWTConfig}
defp config_type(_else), do: :error

@doc false
Expand Down
Loading