1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

bugfix: filter fields are buggy

This commit is contained in:
hellerve 2017-02-23 12:24:43 +01:00
parent 9b16ef143e
commit 71f8de383a

View file

@ -130,7 +130,7 @@ func mainRouteDetail(groups []string, route Parsed) Parsed {
route["metric"] = parseInt(groups[8])
for k, _ := range route {
if !dirtyContains(ParserConf.FilterFields, k) {
if dirtyContains(ParserConf.FilterFields, k) {
route[k] = nil
}
}