Skip to content

Commit 1bb8a8e

Browse files
committed
Fixed further bug in out:popup
1 parent 92b1b42 commit 1bb8a8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/overpass_api/output_formats/output_popup.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ bool Category_Filter::consider(const Node_Skeleton& skel,
134134
if (it_conj != filter_disjunction.end())
135135
output += print(title_key, skel, tags);
136136

137-
return it_conj == filter_disjunction.end();
137+
return it_conj != filter_disjunction.end();
138138
}
139139

140140

@@ -157,7 +157,7 @@ bool Category_Filter::consider(const Way_Skeleton& skel,
157157
if (it_conj != filter_disjunction.end())
158158
output += print(title_key, skel, tags);
159159

160-
return it_conj == filter_disjunction.end();
160+
return it_conj != filter_disjunction.end();
161161
}
162162

163163

@@ -180,7 +180,7 @@ bool Category_Filter::consider(const Relation_Skeleton& skel,
180180
if (it_conj != filter_disjunction.end())
181181
output += print(title_key, skel, tags);
182182

183-
return it_conj == filter_disjunction.end();
183+
return it_conj != filter_disjunction.end();
184184
}
185185

186186

0 commit comments

Comments
 (0)