resources/page: Fix permalinks pattern detection for some of the sections variants

See #8363
This commit is contained in:
Bjørn Erik Pedersen 2021-04-25 16:57:09 +02:00
parent 048418ba74
commit c13d368746
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
1 changed files with 5 additions and 4 deletions

View File

@ -51,10 +51,6 @@ func (p PermalinkExpander) callback(attr string) (pageToPermaAttribute, bool) {
return callback, true
}
if referenceTime.Format(attr) != attr {
return p.pageToPermalinkDate, true
}
if strings.HasPrefix(attr, "sections[") {
fn := p.toSliceFunc(strings.TrimPrefix(attr, "sections"))
return func(p Page, s string) (string, error) {
@ -62,6 +58,11 @@ func (p PermalinkExpander) callback(attr string) (pageToPermaAttribute, bool) {
}, true
}
// Make sure this comes after all the other checks.
if referenceTime.Format(attr) != attr {
return p.pageToPermalinkDate, true
}
return nil, false
}