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
I post this issue on behalf of Robert Roth
I had a typo in the
attribute name and because I didn't check for null I created a
NullPointerException. The problem was that it happened in the init()
function of a servlet that was supposed to be initiated at startup.
This lead to Atjeews crashing every time I tried to start it. Because
of that and becasue it happened on an unrooted phone I couldn't remove
the offending servlet either. The only option was to re-install
Atjeews.
I provided the recommended fix, please retest. As for reinstalling Atjeews, perhaps only cleaning data will help, but all servlets need to be installed again.
I post this issue on behalf of Robert Roth
I had a typo in the
attribute name and because I didn't check for null I created a
NullPointerException. The problem was that it happened in the init()
function of a servlet that was supposed to be initiated at startup.
This lead to Atjeews crashing every time I tried to start it. Because
of that and becasue it happened on an unrooted phone I couldn't remove
the offending servlet either. The only option was to re-install
Atjeews.
I think the problem lies here:
TJWS2/1.x/src/rogatkin/web/WebAppServlet.java
Line 379 in be9d1de
try {
instance.init(ServletAccessDescr.this);
} catch (ServletException se) { // this should probably be: }
catch((Exception e) {
exHolder[0] = se;
}
The text was updated successfully, but these errors were encountered: