todogether-mcp 1.0.2 → 1.0.3
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
|
@@ -327,7 +327,7 @@ async function getTodayTodosDetail() {
|
|
|
327
327
|
if (p.subTodos && p.subTodos.length > 0) {
|
|
328
328
|
for (const sub of p.subTodos) {
|
|
329
329
|
const check = sub.isDone ? "✅" : "⬜";
|
|
330
|
-
lines.push(` ${check} ${sub.
|
|
330
|
+
lines.push(` ${check} ${sub.content}${sub.memo ? ` (${sub.memo})` : ""}`);
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
333
|
}
|