From 831711ad6450706350d0b8b1f7a55aa8f1f5b6f6 Mon Sep 17 00:00:00 2001 From: Waldek Date: Wed, 30 Dec 2020 18:36:25 +0100 Subject: [PATCH] Update monitor.py --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index caf4a3f..de538a1 100644 --- a/monitor.py +++ b/monitor.py @@ -222,7 +222,7 @@ def add_hb_peer(_peer_conf, _ctable_loc, _peer): # if the Frequency is 000.xxx assume it's not an RF peer, otherwise format the text fields # (9 char, but we are just software) see https://wiki.brandmeister.network/index.php/Homebrew/example/php2 - if _peer_conf['TX_FREQ'].isdigit() and _peer_conf['RX_FREQ'].isdigit() and str(type(_peer_conf['TX_FREQ'])).find("bytes") != -1 and str(type(_peer_conf['RX_FREQ'])).find("bytes") != -1: + if _peer_conf['TX_FREQ'].strip().isdecimal() and _peer_conf['RX_FREQ'].strip().isdecimal() and str(type(_peer_conf['TX_FREQ'])).find("bytes") != -1 and str(type(_peer_conf['RX_FREQ'])).find("bytes") != -1: if _peer_conf['TX_FREQ'][:3] == b'000' or _peer_conf['RX_FREQ'][:3] == b'000': _ctable_peer['TX_FREQ'] = 'N/A' _ctable_peer['RX_FREQ'] = 'N/A'