sefidgaran / signalr_client

A Flutter SignalR Client for ASP.NET Core

Home Page:https://pub.dev/packages/signalr_netcore

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

noelex opened this issue · 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?