From defc9f73d1dd0fd6b2f2e5fa6bafbcfeb14ae7c2 Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Fri, 27 Dec 2019 23:18:41 +0100 Subject: [PATCH] filterTisb option filters all TIS-B again --- html/planeObject.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/html/planeObject.js b/html/planeObject.js index b9d3cd8..7e11379 100644 --- a/html/planeObject.js +++ b/html/planeObject.js @@ -189,8 +189,7 @@ PlaneObject.prototype.isFiltered = function() { return true; } - if (filterTISB && this.dataSource == "tisb" && this.icao[0] == '~') { - // only filter TISB that don't correspond to a real ICAO address + if (filterTISB && this.dataSource == "tisb") { return true; }