Skip to content

Commit 5136e7d

Browse files
tsuberydoomspork
authored andcommitted
Fix deprecated Dict warnings (#33)
1 parent 0202227 commit 5136e7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ueberauth/strategy/google.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,6 @@ defmodule Ueberauth.Strategy.Google do
141141
end
142142

143143
defp option(conn, key) do
144-
Dict.get(options(conn), key, Dict.get(default_options(), key))
144+
Keyword.get(options(conn), key, Keyword.get(default_options(), key))
145145
end
146146
end

0 commit comments

Comments
 (0)