mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
prevent crash caused by interface settings being set to none
This commit is contained in:
parent
408a62dffe
commit
33e4888737
1 changed files with 6 additions and 2 deletions
|
|
@ -507,8 +507,12 @@ class ReticulumMeshChat:
|
|||
|
||||
interface_details["target_host"] = interface_target_host
|
||||
interface_details["target_port"] = interface_target_port
|
||||
interface_details["kiss_framing"] = interface_kiss_framing
|
||||
interface_details["i2p_tunneled"] = interface_i2p_tunneled
|
||||
|
||||
if interface_kiss_framing is not None:
|
||||
interface_details["kiss_framing"] = interface_kiss_framing
|
||||
|
||||
if interface_i2p_tunneled is not None:
|
||||
interface_details["i2p_tunneled"] = interface_i2p_tunneled
|
||||
|
||||
# handle I2P interface
|
||||
if interface_type == "I2PInterface":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue