Fixed bug: Wrong method name.
This commit is contained in:
parent
b01bf8a723
commit
4aae89b2b0
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class Sequencer
|
|||
|
||||
def compareable(value)
|
||||
return nil if value.blank?
|
||||
return value.sort if value.respond_to(:sort)
|
||||
return value.sort if value.respond_to?(:sort)
|
||||
value
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue