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
While updating the Storage extension to 0.5.0, I've found a potential bug with the async interop.
If I send an an array, lets say WeatherForecast[] from C# -> JS, it works just fine. When JS is sending back an array as return of of a method, the runtime just stops. Nothing happen. No errors, nothing.
Hello folks,
While updating the Storage extension to 0.5.0, I've found a potential bug with the async interop.
If I send an an array, lets say
WeatherForecast[]
from C# -> JS, it works just fine. When JS is sending back an array as return of of a method, the runtime just stops. Nothing happen. No errors, nothing.To reproduce:
On a TS/JS:
On C#:
That works:
That doesn't works:
In other words... If we call it sync it works, but if we call async, it fail.
My first thought was something wrong with the serialization, but that works in the sync mode, so we discarded it.
We are suspecting
endInvokeDotNetFromJS
isn't being caller or is failing somehow.I would appreciate any help on that.
Thanks
The text was updated successfully, but these errors were encountered: