(fix) closing response before response output stream had finished work cause an exception
diff --git a/RemoteView/Server.cs b/RemoteView/Server.cs
index b4d3724..eb88687 100644
--- a/RemoteView/Server.cs
+++ b/RemoteView/Server.cs
@@ -100,12 +100,12 @@
                 {
                     if (response != null)
                     {
-                        response.Close();
                         try
                         {
                             if (output != null) output.Close();
                         }
                         catch { }
+                        response.Close();
                     }
                 }
             }