Skip to content

Commit c72525d

Browse files
committed
bug fix
1 parent c92dac2 commit c72525d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
coaster (1.4.34)
4+
coaster (1.4.36)
55
activesupport (>= 7.0.7)
66
attr_extras (~> 5.2)
77
i18n (>= 1.0)

lib/coaster/core_ext/standard_error.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def fingerprint
140140
end
141141
rescue => e
142142
@fingerprint_exception = {msg: e.message, bt: e.backtrace ? e.backtrace[0..5] : nil}
143-
if fp.is_a?(Proc) & fp.source_location
143+
if fp.is_a?(Proc) && fp.source_location
144144
f = fp.source_location[0].split('/').last(3).join('/')
145145
"#{f}:#{fp.source_location[1]}"
146146
else

lib/coaster/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Coaster
2-
VERSION = '1.4.35'
2+
VERSION = '1.4.36'
33
end

0 commit comments

Comments
 (0)