]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/concerns/geo_record.rb
Avoid ordering points from public and private traces
[rails.git] / app / models / concerns / geo_record.rb
index 06049c2951b25876999cc7e3ee0fc070bacd97e6..dbda2960f65ce6ad72d7eaf996b9bbee76fc57e0 100644 (file)
@@ -22,7 +22,7 @@ module GeoRecord
   SCALE = 10000000
 
   included do
-    scope :bbox, ->(bbox) { where(OSM.sql_for_area(bbox)) }
+    scope :bbox, ->(bbox) { where(OSM.sql_for_area(bbox, "#{table_name}.")) }
     before_save :update_tile
   end