@fswap/mcp-vikunja 0.1.7 → 0.1.8

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
@@ -415,7 +415,7 @@ function summarizeComment(c) {
415
415
  comment: c.comment,
416
416
  reactions: summarizeReactions(c.reactions),
417
417
  created: c.created,
418
- edited: c.updated && c.updated !== c.created ? c.updated : null
418
+ edited: c.updated && c.created && Date.parse(c.updated) - Date.parse(c.created) > 1e3 ? c.updated : null
419
419
  };
420
420
  }
421
421
  const commentText = z.string().min(1).describe("Comment body. HTML is sent as-is; plain text is wrapped in <p> (blank line = new paragraph)");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fswap/mcp-vikunja",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MCP server for Vikunja — manage tasks, assignees, comments, attachments, relations and kanban from Claude",
5
5
  "type": "module",
6
6
  "bin": {