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
In SuikiUI.Utilities.Effects.SukiEffect.cs at line 72, the !. operator is used to suppress nullability warnings. However, this usage might cause a runtime error (which has already occurred on my Android device). Can we replace the !. operator with ?. instead? Since there is an if block after line 72 to handle cases where assembly is null, using ?. would be safer and more consistent.
Alternatively, do I need to submit a formal request to fix this bug?
Package Version
the latest version of the main branch
Environment
Android 15
Expected Behavior
The app throws a runtime exception: NullReferenceException.
Reproduction
Maybe just used SuikiUI on an Android device? I'm not sure, because my project does not use Suki:Window
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Check the following items
Description of the issue
In SuikiUI.Utilities.Effects.SukiEffect.cs at line 72, the !. operator is used to suppress nullability warnings. However, this usage might cause a runtime error (which has already occurred on my Android device). Can we replace the !. operator with ?. instead? Since there is an if block after line 72 to handle cases where assembly is null, using ?. would be safer and more consistent.
Alternatively, do I need to submit a formal request to fix this bug?
Package Version
the latest version of the main branch
Environment
Android 15
Expected Behavior
The app throws a runtime exception: NullReferenceException.
Reproduction
Maybe just used SuikiUI on an Android device? I'm not sure, because my project does not use Suki:Window
Additional Information
No response
The text was updated successfully, but these errors were encountered: