Fixed interface mode check

This commit is contained in:
Mark Qvist 2022-05-23 00:00:14 +02:00
parent a79f6e7efa
commit f8db5a545d
1 changed files with 3 additions and 3 deletions

View File

@ -535,7 +535,7 @@ class Reticulum:
else:
interface.OUT = True
if interface_mode != Interface.Interface.MODE_FULL:
if interface_mode == Interface.Interface.MODE_AP:
RNS.log(str(interface)+" does not support Access Point mode, reverting to default mode: Full", RNS.LOG_WARNING)
interface_mode = Interface.Interface.MODE_FULL
@ -570,7 +570,7 @@ class Reticulum:
else:
interface.OUT = True
if interface_mode != Interface.Interface.MODE_FULL:
if interface_mode == Interface.Interface.MODE_AP:
RNS.log(str(interface)+" does not support Access Point mode, reverting to default mode: Full", RNS.LOG_WARNING)
interface_mode = Interface.Interface.MODE_FULL
@ -601,7 +601,7 @@ class Reticulum:
else:
interface.OUT = True
if interface_mode != Interface.Interface.MODE_FULL:
if interface_mode == Interface.Interface.MODE_AP:
RNS.log(str(interface)+" does not support Access Point mode, reverting to default mode: Full", RNS.LOG_WARNING)
interface_mode = Interface.Interface.MODE_FULL