diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-31 15:45:54 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-31 15:45:54 +0300 |
| commit | e514b66b261c24257b149ecc6aaa52195509a2b5 (patch) | |
| tree | ae889a11eb88c36e3b70ebe8d83b7e60bc80408b /Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs | |
| parent | a56427605302770b4c0a71a5ff4da439300a2250 (diff) | |
| download | Tango-e514b66b261c24257b149ecc6aaa52195509a2b5.tar.gz Tango-e514b66b261c24257b149ecc6aaa52195509a2b5.zip | |
Working on external bridge.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs index a704d30d1..9492386ed 100644 --- a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs +++ b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs @@ -100,7 +100,12 @@ namespace Tango.Integration.ExternalBridge catch (Exception ex) { LogRequestFailed(login, ex); - await base.Disconnect(); + try + { + await Adapter.Disconnect(); + } + catch { } + throw ex; } |
