From 49e72e37a06ef26cf813f62cf8b5bf5019945556 Mon Sep 17 00:00:00 2001 From: raithsphere Date: Sat, 14 Nov 2020 18:35:21 +0000 Subject: [PATCH] Added possible trackers list --- HRM.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/HRM.py b/HRM.py index 814654f..9affc97 100644 --- a/HRM.py +++ b/HRM.py @@ -418,11 +418,16 @@ async def searchbt(): """ Ignore HTC or Unknown Devices """ Devicelist = ["HTC", "Unknown", "Apple", "Google"] + KnownDevices = ["808S", "Polar", "XOSS"] for d in devices: dx = str(d) if not any(x in dx for x in Devicelist): - log.info(dx) + + if any(x in dx for x in KnownDevices): + log.info("\033[92mPossible Tracker: %s \033[0m", dx) + else: + log.info(dx) def http(webport):