Skip to content

Commit 49c645c

Browse files
committed
remove /EIV_Lobby/ in all params
1 parent 4b2dca0 commit 49c645c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

csharp/Client/ChatWebSocket.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ChatWebSocket Instance
3030
public void Connect(string ip_port, string ticket)
3131
{
3232
webSocket.Options.SetRequestHeader("authorization", ticket);
33-
webSocket.ConnectAsync(new($"ws://{ip_port}/EIV_Lobby/Socket/Chat"), CancellationToken.None);
33+
webSocket.ConnectAsync(new($"ws://{ip_port}/Socket/Chat"), CancellationToken.None);
3434
CoroutineWorkerNode.CallPeriodically(TimeSpan.FromSeconds(1), Receive, CoroutineType.Process, "ChatWebSocket");
3535
}
3636

csharp/Client/MasterServerManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class MasterServerManager
1515

1616
public static string MasterServerIP => ConfigINI.Read(BuildDefined.INI, "MasterServer", "MasterServerURL");
1717

18-
const string AuthURL = "/EIV_Master/Users/Authenticate";
18+
const string AuthURL = "/Users/Authenticate";
1919

2020
public static string Authenticate()
2121
{

csharp/Menus/ConnectionScreen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void CallbackButton(string answer)
8888
return;
8989
// GET to lobby.
9090
System.Net.Http.HttpClient httpClient = new();
91-
var rsp = httpClient.GetAsync($"http://{answer}/EIV_Lobby/About");
91+
var rsp = httpClient.GetAsync($"http://{answer}/About");
9292
rsp.Wait(100);
9393
if (rsp.IsCompletedSuccessfully)
9494
{

csharp/Menus/LobbyScene.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public override void _Ready()
2727

2828
public void Connect()
2929
{
30-
var connectasync = Client.GetAsync($"http://{LobbyAddress}/EIV_Lobby/Connect");
30+
var connectasync = Client.GetAsync($"http://{LobbyAddress}/Connect");
3131
connectasync.Wait(100);
3232
// we could not connect. Just quit.
3333
if (!connectasync.IsCompletedSuccessfully)

0 commit comments

Comments
 (0)