We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fa823 commit 95f95b3Copy full SHA for 95f95b3
src/lib/converter/plugins/CategoryPlugin.ts
@@ -183,7 +183,7 @@ export class CategoryPlugin extends ConverterComponent {
183
for (const childCat of childCategories) {
184
let category = categories.find((cat) => cat.title === childCat);
185
186
- const catBoost = categorySearchBoosts[category?.title ?? -1];
+ const catBoost = categorySearchBoosts[childCat ?? -1];
187
if (catBoost != undefined) {
188
child.relevanceBoost =
189
(child.relevanceBoost ?? 1) * catBoost;
0 commit comments