Skip to content

Commit

Permalink
Merge pull request #16 from hbda/fix_for_fix_payload_display_name
Browse files Browse the repository at this point in the history
Потерялся разделитель между классом и методом в display_name
  • Loading branch information
zsand authored Sep 12, 2023
2 parents 00e3318 + c923e9d commit 70a5f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/delayed/performable_method.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def initialize(object, method, args)
end

def display_name
return "#{self.object.class}#{method}" unless self.object.is_a?(String)
return "#{self.object.class}##{method}" unless self.object.is_a?(String)

case self.object
when CLASS_STRING_FORMAT then "#{$1}.#{method}"
Expand Down

0 comments on commit 70a5f73

Please sign in to comment.