We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 427283e commit 7016a24Copy full SHA for 7016a24
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
## master
4
5
+* Bug Fixes
6
+ * Fix usage of deprecated modules
7
+
8
## 2.0.2 (2016-12-08)
9
10
* Bug Fixes
lib/sentry/event.ex
@@ -50,8 +50,8 @@ defmodule Sentry.Event do
50
user = user_context
51
|> Map.merge(Keyword.get(opts, :user, %{}))
52
tags = Application.get_env(:sentry, :tags, %{})
53
- |> Dict.merge(tags_context)
54
- |> Dict.merge(Keyword.get(opts, :tags, %{}))
+ |> Map.merge(tags_context)
+ |> Map.merge(Keyword.get(opts, :tags, %{}))
55
request = Keyword.get(opts, :request, %{})
56
breadcrumbs = Keyword.get(opts, :breadcrumbs, [])
57
|> Kernel.++(breadcrumbs_context)
0 commit comments