We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdae9c8 commit 96ba11fCopy full SHA for 96ba11f
android-refimpl-app/app/src/main/java/com/zoffcc/applications/trifa/TrifaToxService.java
@@ -2016,7 +2016,11 @@ static void bootstrap_me()
2016
while (i2.hasNext())
2017
{
2018
ee = (BootstrapNodeEntryDB) i2.next();
2019
- int bootstrap_result = HelperGeneric.add_tcp_relay_single_wrapper(ee.ip, ee.port, ee.key_hex);
+ int bootstrap_result = 1;
2020
+ if ((ee.ip != null) && (ee.key_hex != null))
2021
+ {
2022
+ bootstrap_result = HelperGeneric.add_tcp_relay_single_wrapper(ee.ip, ee.port, ee.key_hex);
2023
+ }
2024
Log.i(TAG, "add_tcp_relay_single:res=" + bootstrap_result);
2025
2026
if (bootstrap_result == 0)
0 commit comments