]> git.openstreetmap.org Git - rails.git/commitdiff
Split out subscript to see which one is erroring
authorRichard Fairhurst <richard@systemed.net>
Tue, 21 Apr 2009 10:14:28 +0000 (10:14 +0000)
committerRichard Fairhurst <richard@systemed.net>
Tue, 21 Apr 2009 10:14:28 +0000 (10:14 +0000)
app/controllers/amf_controller.rb

index b0b3f13cf6c1947914caa7583e3fef58ff4bc392..72985554c1967dd04ea1d2e82cf8fc4b8aecb24c 100644 (file)
@@ -76,7 +76,8 @@ class AmfController < ApplicationController
         when 'getpresets';                     results[index]=AMF.putdata(index,getpresets())
         when 'whichways';                      results[index]=AMF.putdata(index,whichways(*args))
         when 'whichways_deleted';      results[index]=AMF.putdata(index,whichways_deleted(*args))
-        when 'getway';                         results[index]=AMF.putdata(index,getway(args[0].to_i))
+        when 'getway';                         r=AMF.putdata(index,getway(args[0].to_i))
+                                    results[index]=r
         when 'getrelation';                    results[index]=AMF.putdata(index,getrelation(args[0].to_i))
         when 'getway_old';                     results[index]=AMF.putdata(index,getway_old(args[0].to_i,args[1]))
         when 'getway_history';         results[index]=AMF.putdata(index,getway_history(args[0].to_i))