mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-07-02 09:36:43 -04:00
retry fix
This commit is contained in:
parent
251825a123
commit
8a00e435cc
1 changed files with 2 additions and 1 deletions
3
utils.py
3
utils.py
|
@ -24,7 +24,8 @@ def send_message(message, destination, interface):
|
||||||
wantResponse=False
|
wantResponse=False
|
||||||
)
|
)
|
||||||
destid = get_node_id_from_num(destination, interface)
|
destid = get_node_id_from_num(destination, interface)
|
||||||
logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \"{chunk.replace('\n', '\\n')}\"")
|
chunk = chunk.replace('\n', '\\n')
|
||||||
|
logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \"{chunk}\"")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.info(f"REPLY SEND ERROR {e.message}")
|
logging.info(f"REPLY SEND ERROR {e.message}")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue