From a03e828317c54b5b665974e36ba2ddf29726b2af Mon Sep 17 00:00:00 2001 From: rszibele Date: Wed, 29 May 2019 18:47:35 +0200 Subject: [PATCH] BOB: status: forgot to pass destination for current tunnel. --- libi2pd_client/BOB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd_client/BOB.cpp b/libi2pd_client/BOB.cpp index 62ab41f6..023be3b4 100644 --- a/libi2pd_client/BOB.cpp +++ b/libi2pd_client/BOB.cpp @@ -661,7 +661,7 @@ namespace client if(!sentCurrent && !m_Nickname.empty()) { // add the current tunnel to the list - BuildStatusLine(true, nullptr, statusLine); + BuildStatusLine(true, m_CurrentDestination, statusLine); LogPrint(eLogError, statusLine); SendData(statusLine.c_str()); }