Skip to content

Commit bb067e0

Browse files
committed
Remove min app version check
1 parent 755e680 commit bb067e0

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

meshtastic/mesh_interface.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -697,12 +697,6 @@ def _handleFromRadio(self, fromRadioBytes):
697697
logging.debug(f"Received myinfo: {stripnl(fromRadio.my_info)}")
698698

699699
failmsg = None
700-
# Check for app too old
701-
if self.myInfo.min_app_version > OUR_APP_VERSION:
702-
failmsg = (
703-
"This device needs a newer python client, run 'pip install --upgrade meshtastic'."
704-
"For more information see https://tinyurl.com/5bjsxu32"
705-
)
706700

707701
if failmsg:
708702
self.failure = Exception(failmsg)

0 commit comments

Comments
 (0)