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

fixed code.

This commit is contained in:
Matthias Hannig 2019-01-25 11:12:52 +01:00
parent 433d924525
commit 25650f524e

View file

@ -54,8 +54,8 @@ func isRouteFiltered(rdata interface{}) bool {
}
for _, filter := range FilteredCommunities {
if cdata[0].(float64) == filter[0] &&
cdata[1].(float64) == filter[1] {
if comdata[0] == filter[0] &&
comdata[1] == filter[1] {
return true
}
}