diff --git a/PolyChat/Assets/LockScreenLogo.scale-200.png b/PolyChat/Assets/LockScreenLogo.scale-200.png index 735f57a..5b4b409 100644 Binary files a/PolyChat/Assets/LockScreenLogo.scale-200.png and b/PolyChat/Assets/LockScreenLogo.scale-200.png differ diff --git a/PolyChat/Assets/SplashScreen.scale-200.png b/PolyChat/Assets/SplashScreen.scale-200.png index 023e7f1..568884f 100644 Binary files a/PolyChat/Assets/SplashScreen.scale-200.png and b/PolyChat/Assets/SplashScreen.scale-200.png differ diff --git a/PolyChat/Assets/Square150x150Logo.scale-200.png b/PolyChat/Assets/Square150x150Logo.scale-200.png index af49fec..5f773e5 100644 Binary files a/PolyChat/Assets/Square150x150Logo.scale-200.png and b/PolyChat/Assets/Square150x150Logo.scale-200.png differ diff --git a/PolyChat/Assets/Square44x44Logo.scale-200.png b/PolyChat/Assets/Square44x44Logo.scale-200.png index ce342a2..b2f8bd7 100644 Binary files a/PolyChat/Assets/Square44x44Logo.scale-200.png and b/PolyChat/Assets/Square44x44Logo.scale-200.png differ diff --git a/PolyChat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/PolyChat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png index f6c02ce..a8add23 100644 Binary files a/PolyChat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and b/PolyChat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/PolyChat/Assets/StoreLogo.png b/PolyChat/Assets/StoreLogo.png index 7385b56..3c5c983 100644 Binary files a/PolyChat/Assets/StoreLogo.png and b/PolyChat/Assets/StoreLogo.png differ diff --git a/PolyChat/Assets/Wide310x150Logo.scale-200.png b/PolyChat/Assets/Wide310x150Logo.scale-200.png index 288995b..4951e19 100644 Binary files a/PolyChat/Assets/Wide310x150Logo.scale-200.png and b/PolyChat/Assets/Wide310x150Logo.scale-200.png differ diff --git a/PolyChat/Models/NetworkingController.cs b/PolyChat/Models/NetworkingController.cs index 4827fb5..d938d50 100644 --- a/PolyChat/Models/NetworkingController.cs +++ b/PolyChat/Models/NetworkingController.cs @@ -10,6 +10,7 @@ using PolyChat.Models.Exceptions; using SocketIOSharp.Server; using SocketIOSharp.Server.Client; using Newtonsoft.Json.Linq; +using System.Threading; namespace PolyChat.Models { @@ -65,7 +66,7 @@ namespace PolyChat.Models /// to send public void sendMessage(String ip, String msg) { - this.getClient(ip).sendMessage(SendCode.Message, msg); + this.getClient(ip).sendMessage(SendCode.Initial, msg); } ///