fix: page hands when attempting to create a 2 letters page

This commit is contained in:
Nick 2019-05-31 12:34:30 -04:00
parent 57bd183b38
commit 7a09601a10

View File

@ -35,7 +35,7 @@ module.exports = {
} }
// Strip extension // Strip extension
if (opts.stripExt) { if (opts.stripExt && pathParts.length > 0) {
const lastPart = _.last(pathParts) const lastPart = _.last(pathParts)
if (lastPart.indexOf('.') > 0) { if (lastPart.indexOf('.') > 0) {
pathParts.pop() pathParts.pop()
@ -78,7 +78,7 @@ module.exports = {
*/ */
isReservedPath(rawPath) { isReservedPath(rawPath) {
const firstSection = _.head(rawPath.split('/')) const firstSection = _.head(rawPath.split('/'))
if (firstSection.length === 1) { if (firstSection.length <= 1) {
return true return true
} else if (localeSegmentRegex.test(firstSection)) { } else if (localeSegmentRegex.test(firstSection)) {
return true return true