@andespindola/brainlink 1.6.8 → 1.6.9
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.
|
@@ -23,6 +23,10 @@ const pollGraphVersion = async () => {
|
|
|
23
23
|
if (version !== state.graphVersion) {
|
|
24
24
|
state.graphVersion = version
|
|
25
25
|
await loadContexts().catch((error) => console.error(error))
|
|
26
|
+
// Clear the request-dedup key so the refetch is not skipped: the viewport
|
|
27
|
+
// has not changed, but the vault has, so we must re-pull the chunk to pick
|
|
28
|
+
// up new nodes/edges (the dedup guard would otherwise short-circuit it).
|
|
29
|
+
state.lastChunkRequestKey = ''
|
|
26
30
|
scheduleChunkFetch()
|
|
27
31
|
}
|
|
28
32
|
} catch (error) {
|
package/package.json
CHANGED