signalr_client icon indicating copy to clipboard operation
signalr_client copied to clipboard

Server trying to call client method with null parameters crashes the client

Open noelex opened this issue 3 years ago • 0 comments

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?

noelex avatar May 23 '22 04:05 noelex