diff --git a/RNS/Discovery.py b/RNS/Discovery.py index 2dc4eef..9f5d41a 100644 --- a/RNS/Discovery.py +++ b/RNS/Discovery.py @@ -251,8 +251,8 @@ class InterfaceAnnounceHandler: class InterfaceDiscovery(): THRESHOLD_UNKNOWN = 24*60*60 - THRESHOLD_STALE = 7*24*60*60 - THRESHOLD_REMOVE = 30*24*60*60 + THRESHOLD_STALE = 3*24*60*60 + THRESHOLD_REMOVE = 7*24*60*60 STATUS_STALE = 0 STATUS_UNKNOWN = 100 diff --git a/RNS/Utilities/rnstatus.py b/RNS/Utilities/rnstatus.py index afad28b..5585c39 100644 --- a/RNS/Utilities/rnstatus.py +++ b/RNS/Utilities/rnstatus.py @@ -195,9 +195,9 @@ def program_setup(configdir, dispall=False, verbosity=0, name_filter=None, json= if_type = i["type"] status = i["status"] - if status == "available": status_display = "✓ Available" - elif status == "unknown": status_display = "? Unknown" - elif status == "stale": status_display = "× Stale" + if status == "available": status_display = "Available" + elif status == "unknown": status_display = "Unknown" + elif status == "stale": status_display = "Stale" else: status_display = status now = time.time()