Added Project Icons

This commit is contained in:
Patrick Hellebrand
2021-09-21 15:51:34 +02:00
parent 86de29bcce
commit 46cc5b1d10
8 changed files with 2 additions and 1 deletions

View File

@@ -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
/// <param name="msg"> to send </param>
public void sendMessage(String ip, String msg)
{
this.getClient(ip).sendMessage(SendCode.Message, msg);
this.getClient(ip).sendMessage(SendCode.Initial, msg);
}
/// <summary>