Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Telepathy/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@ void Listen(int port)
// through to here when aborting. don't show an
// error.)
}
catch (ThreadInterruptedException)
{
// happens if receive thread interrupts send thread. don't log anything.
// (we catch it in SendLoop too, but it still gets
// through to here when aborting. don't show an
// error.)
}
catch (Exception exception)
{
Logger.LogError("Server send thread exception: " + exception);
Expand Down