From 47e326c8a9e87ab8ddfc562eb1abd77213a38ae4 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 12 Oct 2022 16:08:29 +0200 Subject: [PATCH] Import Android-specific RNode interface on Android --- RNS/Reticulum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py index 216e7bd..028d330 100755 --- a/RNS/Reticulum.py +++ b/RNS/Reticulum.py @@ -29,7 +29,7 @@ if get_platform() == "android": from .Interfaces import TCPInterface from .Interfaces import UDPInterface from .Interfaces import I2PInterface - from .Interfaces import RNodeInterface + from .Interfaces.Android import RNodeInterface else: from .Interfaces import *