@cliphijack/santaclaude 1.0.28 → 1.0.29
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/package.json +1 -1
- package/santaclaude.js +1 -1
package/package.json
CHANGED
package/santaclaude.js
CHANGED
|
@@ -280,7 +280,7 @@ function refreshNotion() {
|
|
|
280
280
|
if (b.type === 'child_page') items.push({ t: 'page', id: (b.id || '').replace(/-/g, ''), title: (b.child_page && b.child_page.title) || '(제목 없음)' });
|
|
281
281
|
else if (b.type === 'child_database') items.push({ t: 'db', id: (b.id || '').replace(/-/g, ''), title: (b.child_database && b.child_database.title) || '(DB)' });
|
|
282
282
|
}
|
|
283
|
-
_njCache = { items: items.slice(0, 30) };
|
|
283
|
+
_njCache = { items: items.slice(0, 30), parent: parent.trim().replace(/-/g, '') };
|
|
284
284
|
}).catch(() => { _njCache = null; });
|
|
285
285
|
}
|
|
286
286
|
function startShareServer(ip) { // 테일넷 IP에만 바인드 → 테일넷 피어만 접근. 경로 토큰 + basename으로 보호
|