diff --git a/Client/EngineConnection.cs b/Client/EngineConnection.cs index 8b62c10..655e073 100644 --- a/Client/EngineConnection.cs +++ b/Client/EngineConnection.cs @@ -86,7 +86,10 @@ namespace Client // wait until we have a tunnel id while (tunnelId == string.Empty) { } - Write("got tunnel id! " + tunnelId); + if (tunnelId != null) + { + Write("got tunnel id! " + tunnelId); + } mainCommand = new Command(tunnelId); }