From 14d0b3383d04e102029f41661c192e77e22bfd98 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 18 Mar 2020 04:46:26 +0200 Subject: Added support for FSE mouse gestures via WebRTC. Added SendBinaryData via WebRtcClient. --- .../Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs') diff --git a/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs b/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs index 92937f561..0596b5745 100644 --- a/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs +++ b/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs @@ -23,10 +23,13 @@ namespace Tango.SystemInfo str += Name + "\n\n"; - foreach (var obj in Objects) + if (Objects != null) { - str += obj.ToString(); - str += "\n"; + foreach (var obj in Objects) + { + str += obj.ToString(); + str += "\n"; + } } str += "\n"; -- cgit v1.3.1