fix a very stupid nullptr
All checks were successful
/ Build BaseBand Loader (push) Successful in 5m3s

This commit is contained in:
Daniella / Tove 2024-06-09 23:42:03 +02:00
parent 376a04e360
commit 688732b9f8
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -102,6 +102,7 @@ public class CustomClassLoader extends ClassLoader implements Util {
URL r = Launch.classLoader.findResource(name);
if(r == null)
return super.findResource(name);
return r;
}
try {
return URLWrapper.wrap(name, data[0]);