We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8a033 commit 6a01e66Copy full SHA for 6a01e66
src/Sentry.Unity/WebGL/SentryWebGL.cs
@@ -43,6 +43,9 @@ public static void Configure(SentryUnityOptions options)
43
// Please contact Customer Support with a sample project so that we can reproduce the problem and troubleshoot it."
44
// Maybe we could write a file when this error occurs and recognize it on the next start. Like unity-native.
45
options.CrashedLastRun = () => false;
46
+
47
+ // Disable async when accessing files (e.g. FileStream(useAsync: true)) because it throws on WebGL.
48
+ options.UseAsyncFileIO = false;
49
}
50
51
0 commit comments