signalr_client
signalr_client copied to clipboard
Server trying to call client method with null parameters crashes the client
The HubConnection will disconnect if my server calls a client method with null parameters. After some digging I found that InvocationMessage does not allow nullable parameters at all. If I change those the definitions of arguments to List<Object?> , it works without any problem. But this would be a breaking change. Can we get this fixed?