Skip to content

Commit 8046277

Browse files
MAXSTRING fail fix
1 parent ffbc3df commit 8046277

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cache-visual-editor",
33
"printableName": "Cache Visual Editor",
44
"packageName": "VisualEditor",
5-
"version": "0.8.4",
5+
"version": "0.8.5",
66
"description": "Visual class editor for InterSystems Caché",
77
"main": "index.js",
88
"keywords": [

source/cache/REST/Informer.cls

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ ClassMethod List() As %Status
141141
continue
142142
}
143143
}
144-
write data.$toJSON()
144+
145+
write "" // fixes the strange $toJSON() issue: it does not output content properly without this string
146+
do data.$toJSON()
145147

146148
return $$$OK
147149
}

0 commit comments

Comments
 (0)