bulltrackers-module 1.0.637 → 1.0.639
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.
|
@@ -35,7 +35,8 @@ function isDependencyReady(depName, isHistoricalSelf, currentStatusMap, prevStat
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
if (storedStatus && storedStatus.dependencyResultHashes) {
|
|
38
|
-
|
|
38
|
+
// FIX: Normalize the dependency name for lookup
|
|
39
|
+
const lastSeenResultHash = storedStatus.dependencyResultHashes[depName] || storedStatus.dependencyResultHashes[norm];
|
|
39
40
|
if (lastSeenResultHash && targetStatus.resultHash !== lastSeenResultHash) {
|
|
40
41
|
return { ready: true, dataChanged: true, reason: 'Dependency Data Update' };
|
|
41
42
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Change this string to force a global re-computation
|
|
2
|
-
module.exports = "v2.0-epoch-
|
|
2
|
+
module.exports = "v2.0-epoch-7";
|