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
Whenever i use the LoadObject function instead of the LoadObjectAsync function the program freezes forever. Using the LoadObjectAsync function with await seems to work but using the async function in a not async context wont work.
I figured out that the problem comes from AbstractFileProvider.cs
varuasset=awaituassetTask;
I also noticed that it works when i use the debugger to step into the Task.Run(CreateReader) function thats being called above by file.CreateReaderAsync() even tho it doesnt step into the function.
Current workaround:
Using the LoadObjectAsync function in an async function seems to fix it but is quite annoying.
The text was updated successfully, but these errors were encountered:
Whenever i use the LoadObject function instead of the LoadObjectAsync function the program freezes forever. Using the LoadObjectAsync function with await seems to work but using the async function in a not async context wont work.
I figured out that the problem comes from AbstractFileProvider.cs
I also noticed that it works when i use the debugger to step into the
Task.Run(CreateReader)
function thats being called above byfile.CreateReaderAsync()
even tho it doesnt step into the function.Current workaround:
Using the LoadObjectAsync function in an async function seems to fix it but is quite annoying.
The text was updated successfully, but these errors were encountered: