Skip to content

Commit

Permalink
Fix sentry initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
Dainii committed Mar 8, 2024
1 parent 833d6c7 commit f1746d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/initializers/sentry.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

if config.dsn = ENV.fetch('SENTRY_DSN', nil)
if ENV.fetch('SENTRY_DSN', nil)
Sentry.init do |config|
config.dsn = ENV.fetch('SENTRY_DSN', nil)
config.breadcrumbs_logger = %i[active_support_logger http_logger]
Expand Down

0 comments on commit f1746d0

Please sign in to comment.