Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion osu.Desktop/IPC/OsuWebSocketProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ public partial class OsuWebSocketProvider : Component
[BackgroundDependencyLoader]
private void load(SessionStatics sessionStatics)
{
server = new WebSocketServer(49727);
// This port should not be between 49152 and 65535 as it will likely result in errors for Windows users.
// See https://github.com/dotnet/runtime/issues/115088#issuecomment-2887081086 for additional context.
server = new WebSocketServer(48727);
server.StartAsync().FireAndForget(onError: ex => Logger.Error(ex, "Failed to start websocket"));

sessionStatics.BindWith(Static.LastLocalUserScore, lastLocalScore);
Expand Down
Loading