Skip to content
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

Fix java.lang.NullPointerException bug on Android #2066

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

josharnow
Copy link

Fixes "java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference"

Within getInputStream(), there is a conditional in which .equals() is invoked on u.getScheme().

If u.getScheme() is null as can sometimes be the case, this will break functions such as Filesystem.readFile() by breaking the getInputStream() function.

This fix involves first checking that u.getScheme() != null within the conditional.

Bug: "java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant