mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-12-18 18:10:17 +00:00
Merge pull request #629 from jacobeva/refactor-fix
Fix RNodeMultiInterface to work with refactored interfaces
This commit is contained in:
commit
8b08658b7f
@ -197,14 +197,13 @@ class RNodeMultiInterface(Interface):
|
|||||||
# Count how many interfaces are in the file
|
# Count how many interfaces are in the file
|
||||||
for subinterface in c:
|
for subinterface in c:
|
||||||
# if the retrieved entry is not a string, it must be a dictionary, which is what we want
|
# if the retrieved entry is not a string, it must be a dictionary, which is what we want
|
||||||
if not isinstance(c[subinterface], str):
|
if isinstance(c[subinterface], dict):
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
# Count how many interfaces are enabled to allow for appropriate matrix sizing
|
# Count how many interfaces are enabled to allow for appropriate matrix sizing
|
||||||
for subinterface in c:
|
for subinterface in c:
|
||||||
# if the retrieved entry is not a string, it must be a dictionary, which is what we want
|
if isinstance(c[subinterface], dict):
|
||||||
if not isinstance(c[subinterface], str):
|
subinterface_config = c[subinterface]
|
||||||
subinterface_config = self.config["interfaces"][name][subinterface]
|
|
||||||
if (("interface_enabled" in subinterface_config) and subinterface_config.as_bool("interface_enabled") == True) or (("enabled" in c) and c.as_bool("enabled") == True):
|
if (("interface_enabled" in subinterface_config) and subinterface_config.as_bool("interface_enabled") == True) or (("enabled" in c) and c.as_bool("enabled") == True):
|
||||||
enabled_count += 1
|
enabled_count += 1
|
||||||
|
|
||||||
@ -213,9 +212,8 @@ class RNodeMultiInterface(Interface):
|
|||||||
subint_index = 0
|
subint_index = 0
|
||||||
|
|
||||||
for subinterface in c:
|
for subinterface in c:
|
||||||
# If the retrieved entry is not a string, it must be a dictionary, which is what we want
|
if isinstance(c[subinterface], dict):
|
||||||
if not isinstance(c[subinterface], str):
|
subinterface_config = c[subinterface]
|
||||||
subinterface_config = self.config["interfaces"][name][subinterface]
|
|
||||||
if (("interface_enabled" in subinterface_config) and subinterface_config.as_bool("interface_enabled") == True) or (("enabled" in c) and c.as_bool("enabled") == True):
|
if (("interface_enabled" in subinterface_config) and subinterface_config.as_bool("interface_enabled") == True) or (("enabled" in c) and c.as_bool("enabled") == True):
|
||||||
subint_config[subint_index][0] = subinterface
|
subint_config[subint_index][0] = subinterface
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user