Browse Source

Adds to_f to prices to get correct range.

Jason Normore 12 years ago
parent
commit
1cb327940f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/shopify_api/resources/product.rb

+ 1 - 1
lib/shopify_api/resources/product.rb

@@ -5,7 +5,7 @@ module ShopifyAPI
 
     # compute the price range
     def price_range
-      prices = variants.collect(&:price)
+      prices = variants.collect(&:price).collect(&:to_f)
       format =  "%0.2f"
       if prices.min != prices.max
         "#{format % prices.min} - #{format % prices.max}"