Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the default uri a string, not a charlist
Browse files Browse the repository at this point in the history
nathanalderson authored and jmhossler committed Apr 1, 2024
1 parent 0de75f6 commit fefcc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pigeon/pushy/config.ex
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ defmodule Pigeon.Pushy.Config do
def new(opts) when is_list(opts) do
%__MODULE__{
key: opts |> Keyword.get(:key),
uri: Keyword.get(opts, :uri, 'api.pushy.me'),
uri: Keyword.get(opts, :uri, "api.pushy.me"),
port: Keyword.get(opts, :port, 443)
}
end

0 comments on commit fefcc3c

Please sign in to comment.