Skip to content
Snippets Groups Projects
Unverified Commit 08ae7a0c authored by Dixon Fred's avatar Dixon Fred Committed by GitHub
Browse files

Merge pull request #11547 from pedrobmarin/fix-401-pad-export

Fix padId getter
parents abf9ed40 f02384bb
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,8 @@ public class ParamsUtil {
// If there is no query params, it's an invalid URL already
if (splitURL.length == 2) {
String[] params = splitURL[0].split("\\/");
padId = params[params.length - 1];
// /p/pad/<padId>
if (params.length >= 4) padId = params[3];
}
} catch (UnsupportedEncodingException e) {
log.error(e.toString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment