Skip to content

Commit

Permalink
switch from 'note:collection_times' to 'collection_times:signed'='no'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoniecz committed Jul 20, 2018
1 parent a335f3c commit f51ace7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class AddPostboxCollectionTimes extends SimpleOverpassQuestType

@Override protected String getTagFilters()
{
return "nodes with amenity=post_box and !collection_times and !note:collection_times and (access !~ private|no)";
return "nodes with amenity=post_box and !collection_times and collection_times:signed != no and (access !~ private|no)";
}

@Override public AbstractQuestAnswerFragment createForm()
Expand All @@ -31,7 +31,7 @@ public class AddPostboxCollectionTimes extends SimpleOverpassQuestType
boolean noTimes = answer.getBoolean(AddCollectionTimesForm.NO_TIMES_SPECIFIED);
if(noTimes)
{
changes.add("note:collection_times","no times specified on the box");
changes.add("collection_times:signed","no");
}
else
{
Expand Down

0 comments on commit f51ace7

Please sign in to comment.