fix: apply lazy mode to funboxes using pullSection (fehmer) (#4869)

This commit is contained in:
Christian Fehmer 2023-12-18 13:28:59 +01:00 committed by GitHub
parent a41e241297
commit e4e7408795
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -486,7 +486,7 @@ export async function generateWords(
}
const ret = [];
for (const word of funboxSection) {
ret.push(applyFunboxesToWord(word));
ret.push(applyLazyModeToWord(applyFunboxesToWord(word), language));
}
return {
words: ret,