Skip to content

Commit f503234

Browse files
committed
Add one more missing FireAndForget call
```csharp 2025-07-17 08:52:06 [error]: An unobserved error has occurred. 2025-07-17 08:52:06 [error]: System.TimeoutException: Server timeout (30000.00ms) elapsed without receiving a message from the server. 2025-07-17 08:52:06 [error]: at Microsoft.AspNetCore.SignalR.Client.HubConnection.InvokeCoreAsync(String methodName, Type returnType, Object[] args, CancellationToken cancellationToken) 2025-07-17 08:52:06 [error]: at Microsoft.AspNetCore.SignalR.Client.HubConnection.InvokeCoreAsyncCore(String methodName, Type returnType, Object[] args, CancellationToken cancellationToken) 2025-07-17 08:52:06 [error]: at Microsoft.AspNetCore.SignalR.Client.HubConnection.InvokeCoreAsync(String methodName, Type returnType, Object[] args, CancellationToken cancellationToken) 2025-07-17 08:52:06 [error]: at Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.InvokeCoreAsync[TResult](HubConnection hubConnection, String methodName, Object[] args, CancellationToken cancellationToken) 2025-07-17 08:52:06 [error]: at osu.Game.Online.Metadata.OnlineMetadataClient.<isConnectedChanged>b__31_1() ```
1 parent 439e28a commit f503234

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

osu.Game/Online/Metadata/OnlineMetadataClient.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
using osu.Game.Configuration;
1313
using osu.Game.Online.API;
1414
using osu.Game.Online.API.Requests.Responses;
15+
using osu.Game.Online.Multiplayer;
1516
using osu.Game.Users;
1617

1718
namespace osu.Game.Online.Metadata
@@ -116,7 +117,7 @@ private void isConnectedChanged(ValueChangedEvent<bool> connected)
116117
}
117118

118119
if (IsWatchingUserPresence)
119-
BeginWatchingUserPresenceInternal();
120+
BeginWatchingUserPresenceInternal().FireAndForget();
120121

121122
if (localUser.Value is not GuestUser)
122123
{

0 commit comments

Comments
 (0)