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 b05afd9 commit 8cfc110Copy full SHA for 8cfc110
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## Unreleased
2
+
3
+- Fix NoMethodError / Make session_tracking check consistent ([#2269](https://github.com/getsentry/sentry-ruby/pull/2269))
4
5
## 5.17.0
6
7
### Features
sentry-ruby/lib/sentry/hub.rb
@@ -245,7 +245,7 @@ def end_session
245
end
246
247
def with_session_tracking(&block)
248
- return yield unless configuration.auto_session_tracking
+ return yield unless configuration.session_tracking?
249
250
start_session
251
yield
0 commit comments