We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94861a3 commit e455716Copy full SHA for e455716
pivot4j-pentaho/src/main/java/org/pivot4j/pentaho/servlet/PluginServletRequest.java
@@ -61,7 +61,7 @@ public String getServletPath() {
61
public String getPathInfo() {
62
String pathInfo = super.getPathInfo();
63
64
- if (pathInfo.startsWith(SERVLET_PATH)) {
+ if (pathInfo != null && pathInfo.startsWith(SERVLET_PATH)) {
65
pathInfo = pathInfo.substring(SERVLET_PATH.length());
66
}
67
0 commit comments