Skip to content

IL2CPP doesn't have file name: #103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
semuserable opened this issue Apr 2, 2021 · 1 comment · Fixed by #108
Closed

IL2CPP doesn't have file name: #103

semuserable opened this issue Apr 2, 2021 · 1 comment · Fixed by #108
Assignees
Labels
Feature New feature or request IL2CPP

Comments

@semuserable
Copy link
Contributor

Don't add stacktrace "filename" if it's <0000>.

@semuserable
Copy link
Contributor Author

semuserable commented Apr 2, 2021

Android IL2CPP

image

Windows IL2CPP

image

Possible and the most direct fix from Unity side

filename = filename.Equals("<00000000000000000000000000000000>", StringComparison.OrdinalIgnoreCase) 
  ? string.Empty 
  : filename;

After that looks like this (Win, Android)

image

@bruno-garcia is it good enough?) No PR for this thing, just checked the possibilities.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature New feature or request IL2CPP
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants