Fix a bug parsing the rest URI

This commit is contained in:
Kris Moore
2016-01-05 13:35:00 -05:00
parent ea0bbad1f6
commit ad8d88fc7c

View File

@@ -69,7 +69,7 @@ public:
if(!URI.isEmpty()){
//TO-DO
name = URI.section("/",-1); //last entry
namesp = URI.section("/",0,-2); //URI excluding name
namesp = URI.section("/",1,1); //URI excluding name
}
}
~RestInputStruct(){}