You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
312: ...
313: ...
314: Function.apply(ack, [null, ...(args is List ? args : [args])]);
315: ...
The text was updated successfully, but these errors were encountered:
theideasaler
changed the title
[Issue] Unhandled Exception: type 'String' is not a subtype of type 'Iterable<dynamic>'
[Issue] Unhandled Exception: type 'String' is not a subtype of type 'Iterable<dynamic>' on Server Acknowledgement
Nov 1, 2024
This issue is caused by spreading args inside a List, while args could be non-List value emitted from server.
bug caused by
lib/src/socket.dart:314
sampe client (socket_io_client: ^3.0.0)
sample server (nodejs with "socket.io": "^4.8.0")
proposed fix:
The text was updated successfully, but these errors were encountered: