@joshski/dust 0.1.21 → 0.1.22
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.
- package/dist/dust.js +1 -1
- package/package.json +1 -1
package/dist/dust.js
CHANGED
|
@@ -1879,7 +1879,7 @@ async function loopClaude(dependencies, loopDependencies = createDefaultDependen
|
|
|
1879
1879
|
const iterationOptions = {};
|
|
1880
1880
|
if (eventsUrl) {
|
|
1881
1881
|
iterationOptions.onRawEvent = (rawEvent) => {
|
|
1882
|
-
if (
|
|
1882
|
+
if (typeof rawEvent.session_id === "string" && rawEvent.session_id) {
|
|
1883
1883
|
agentSessionId = rawEvent.session_id;
|
|
1884
1884
|
}
|
|
1885
1885
|
emit({ type: "claude.raw_event", rawEvent });
|