You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to track this down, I had to join in the changesets and users tables and then update xml.js to use the new values instead of the hardcoded ones. I can put together a pull request.
knex.select('current_nodes.*', 'users.display_name as user', 'users.id as uid')
.from('current_nodes')
.leftJoin('changesets', 'current_nodes.changeset_id', 'changesets.id')
.leftJoin('users', 'changesets.user_id', 'users.id')
.where('current_nodes.id', nodeId),
This little guy is supposed to tell us all the users who made changes on the current map extent.
However, it only ever says DevelopmentSeed, making me think we're doing something wrong on the server-side, possibly in the bbox endpoint.
[edit] for clarity all the names are DevelopmentSeed even when I make a new road and zoom in to only see that road.
The text was updated successfully, but these errors were encountered: