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
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
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
Additional Information
No response