Manually filter out some fields due to probable spyglass bug

This commit is contained in:
Misode
2024-10-30 17:32:20 +01:00
parent 083862f867
commit 9886155fee
2 changed files with 19 additions and 2 deletions

View File

@@ -329,6 +329,9 @@ const initialize: core.ProjectInitializer = async (ctx) => {
meta.registerFormatter<JsonStringNode>('json:string', (node) => {
return JSON.stringify(node.value)
})
meta.registerFormatter<core.ErrorNode>('error', () => {
return ''
})
return { loadedVersion: release }
}