sentry_breakpad 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/sentry_breakpad/breakpad_parser.rb +1 -1
- data/lib/sentry_breakpad/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be176fe68d4ffc490680d7576a109f8e864128ff
|
4
|
+
data.tar.gz: 2fe5dad280e83f6e02a779e6853bf862f6978bb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ce184846c4162d2be04162213f528dccbf1f7c2627027d1db835aaa9f1a73cdd93aca13d71f5bed6ec22f4eb4225fe7bad6e7d8423af75f624bdbe28a572f1d
|
7
|
+
data.tar.gz: 2a3d08b3c92331d54635880b05be5f0e5349cf927da5452432bd468578513de3c01b9efac698dc30456330d3791390f2de4221b74c4b4ceda8f4216659699ce8
|
@@ -308,7 +308,7 @@ module SentryBreakpad
|
|
308
308
|
def deep_merge(hash1, hash2)
|
309
309
|
hash2.each do |key, value|
|
310
310
|
if hash1.key?(value) && hash1[key].is_a?(Hash) && value.is_a?(Hash)
|
311
|
-
hash1[key] = hash1[key]
|
311
|
+
hash1[key] = deep_merge(hash1[key], value)
|
312
312
|
else
|
313
313
|
hash1[key] = value
|
314
314
|
end
|