Solved! Go to Solution.
Views
Replies
Total Likes
In that case you can check the same before you call this method and it will solve your issue for now.
That's because when you have just "#" in the path and try splitting it using "/" then the array length will be 1 holding the original value and which means you can just access 0th index.
To solve this issue, put a if statement before line no 94 to check if there is "/" character present in the path. Something like this:
if(path.contains("/")) {
//line no 94
} else {
pathPrefix = path;
}
The code snippet is from the aem bundle not the project code.
In that case you can check the same before you call this method and it will solve your issue for now.