]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/amf_controller.rb
A few more edge cases
[rails.git] / app / controllers / amf_controller.rb
index 4c9dbb11449990a7a4add574b31247bca9895372..fb50b6aad39e0401ee64e469aa874019e9d1e221 100644 (file)
@@ -376,8 +376,9 @@ class AmfController < ApplicationController
           timestamp = DateTime.strptime(timestamp.to_s, "%d %b %Y, %H:%M:%S")
           old_way = OldWay.where("way_id = ? AND timestamp <= ?", id, timestamp).unredacted.order("timestamp DESC").first
           unless old_way.nil?
-            points = old_way.get_nodes_revert(timestamp)
-            unless old_way.visible
+            if old_way.visible
+              points = old_way.get_nodes_revert(timestamp)
+            else
               return [-1, "Sorry, the way was deleted at that time - please revert to a previous version.", id]
             end
           end