mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-02-04 06:25:41 -06:00
fix the code to handle cases where 'fileName' is undefined.
This commit is contained in:
parent
64729211d1
commit
9a55df4d2f
@ -238,10 +238,12 @@ export function transformLink(src: FullSlug, target: string, opts: TransformOpti
|
|||||||
|
|
||||||
if (opts.strategy === "shortest") {
|
if (opts.strategy === "shortest") {
|
||||||
// if the file name is unique, then it's just the filename
|
// if the file name is unique, then it's just the filename
|
||||||
|
const normalizedTarget = targetCanonical.normalize("NFC")
|
||||||
const matchingFileNames = opts.allSlugs.filter((slug) => {
|
const matchingFileNames = opts.allSlugs.filter((slug) => {
|
||||||
const parts = slug.split("/")
|
const parts = slug.split("/")
|
||||||
const fileName = parts.at(-1)
|
const fileName = parts.at(-1)
|
||||||
return targetCanonical.normalize() === fileName.normalize()
|
if (!fileName) return false
|
||||||
|
return normalizedTarget === fileName.normalize("NFC")
|
||||||
})
|
})
|
||||||
|
|
||||||
// only match, just use it
|
// only match, just use it
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user