bulltrackers-module 1.0.565 → 1.0.567
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -403,7 +403,6 @@ exports.runRootDataIndexer = async (config, dependencies) => {
|
|
|
403
403
|
insightsRef.get(),
|
|
404
404
|
Promise.resolve(!genericSocialSnap.empty),
|
|
405
405
|
piRankingsRef.get(),
|
|
406
|
-
piMasterListRef.get(), // [NEW]
|
|
407
406
|
// Check new structure first, fallback to legacy
|
|
408
407
|
checkDateCollectionHasDocs(piPortfoliosCollectionRef).then(exists => exists || checkAnyPartExists(piPortfoliosPartsRef)),
|
|
409
408
|
checkAnyPartExists(piDeepPartsRef), // Legacy only
|
|
@@ -417,7 +416,8 @@ exports.runRootDataIndexer = async (config, dependencies) => {
|
|
|
417
416
|
piRatingsRef.get(),
|
|
418
417
|
piPageViewsRef.get(),
|
|
419
418
|
watchlistMembershipRef.get(),
|
|
420
|
-
piAlertHistoryRef.get()
|
|
419
|
+
piAlertHistoryRef.get(),
|
|
420
|
+
piMasterListRef.get() // [NEW] - Moved to end to match destructuring order
|
|
421
421
|
]);
|
|
422
422
|
|
|
423
423
|
// Also check social collections directly (new structure)
|