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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-learning-opencode",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "VibeLearning plugin for OpenCode - spaced repetition learning while coding",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",