From 698a4fc05cbd7a5bb60cb4bf6b512f0d77e7384e Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Tue, 9 May 2017 11:49:49 +0200 Subject: [PATCH] no need to filter relations without support for old-style multipolygons --- update/process.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/update/process.go b/update/process.go index 7d25fa0..260d080 100644 --- a/update/process.go +++ b/update/process.go @@ -350,11 +350,7 @@ func Update(oscFile string, geometryLimiter *limit.Limiter, expireor expire.Expi } // insert new relation progress.AddRelations(1) - // filter out unsupported relation types, otherwise they might - // get inserted with the tags from an outer way - if relTagFilter.Filter(&rel.Tags) { - relations <- rel - } + relations <- rel } for wayId, _ := range wayIds {