Fixed logic

This commit is contained in:
2017-04-04 08:48:36 -04:00
committed by GitHub
parent 4adcbba840
commit b3f491a60b

View File

@@ -26,10 +26,10 @@ class Vehicle < ActiveRecord::Base
# returns a human readable string # returns a human readable string
def to_s def to_s
if year.nil? if year.nil? or manke.nil? or model.nil?
return "#{year} #{make} #{model}"
else
return "#{vin}" return "#{vin}"
else
return "#{year} #{make} #{model}"
end end
end end