vibe-learning-opencode 0.2.3 → 0.2.4
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -212,7 +212,7 @@ var VibeLearningPlugin = (ctx) => {
|
|
|
212
212
|
// Generic event handler for session events
|
|
213
213
|
event: async ({ event }) => {
|
|
214
214
|
if (event.type === "session.created") {
|
|
215
|
-
const sessionID = event.properties?.id;
|
|
215
|
+
const sessionID = event.properties?.info?.id;
|
|
216
216
|
if (!sessionID)
|
|
217
217
|
return;
|
|
218
218
|
lastSessionID = sessionID;
|