Fixed bug in extractComponents()

This commit is contained in:
CalDescent 2023-01-29 13:38:08 +00:00
parent eb07e6613f
commit 600f98ddab

View File

@ -82,6 +82,9 @@ function extractComponents(url) {
// Identifier exists, so don't include it in the path
parts.shift();
}
else {
identifier = null;
}
}
const path = parts.join("/");