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 b0870d6 commit f59744eCopy full SHA for f59744e
src/javaxt/express/ServiceRequest.java
@@ -255,7 +255,7 @@ public void setPath(String path){
255
//in the path. Example: "GET /config/users" would yield the "getUsers"
256
//from the "config" service.
257
String name = getPath(0).toString();
258
- if (name!=null){
+ if (name!=null && name.length()>0){
259
name = name.substring(0, 1).toUpperCase() + name.substring(1);
260
261
if (readOnly){
0 commit comments