From 992e523f0af6da0923704e2e459b9c7c138ef8bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Fri, 2 May 2014 12:01:57 +0200 Subject: [PATCH] Receiver catched nun auch IOExceptions --- src/Receiver.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Receiver.cs b/src/Receiver.cs index d5c25e0..3146961 100644 --- a/src/Receiver.cs +++ b/src/Receiver.cs @@ -33,6 +33,8 @@ namespace WorldOfPeacecraft } } catch (ObjectDisposedException e) { // Nothing to do + } catch (IOException e) { + // Nothing to do } }