SteamRE / SteamKit

SteamKit2 is a .NET library designed to interoperate with Valve's Steam network. It aims to provide a simple, yet extensible, interface to perform various actions on the network.
GNU Lesser General Public License v2.1
2.61k stars 497 forks source link

[Bug]: Chat can send messages, but not receive them. ALL Users appear offline. #1435

Closed JackOfFates closed 1 month ago

JackOfFates commented 1 month ago

What did you expect to happen?

I have my client connected & authenticated.

Sending chats work.

Instead of that, what actually happened?

Zero callbacks are ever called.

Which operating system are you running on?

None

Which .NET Runtime are you running on?

.NET Framework

Version

6.0

Relevant log output

No response

Example Code

Code from initialization
manager.Subscribe(Of ChatMsgCallback)(AddressOf OnSteamChatMessageReceived)

Code for the handling of event

Private Sub OnSteamChatMessageReceived(callback As ChatMsgCallback)
    Application.mainThread(Sub() newSteamMessage(callback))
End Sub

Additional Information

No response