Skip to content

Commit ead3c78

Browse files
committed
fix: fix a bug that precludes nested arrays in env.json
1 parent 3f8797d commit ead3c78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cls/IPM/General/InstallTimeConfig.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Method GetArg(package As %String, args... As %String) As %Any
2626
Set obj = ..Config.%Get(package)
2727

2828
For i = 1:1:$Get(args) {
29-
If '($IsObject(obj) && obj.%IsA("%Library.DynamicObject")) {
29+
If '($IsObject(obj) && obj.%IsA("%Library.DynamicAbstractObject")) {
3030
Return ""
3131
}
3232
Set obj = obj.%Get(args(i))

0 commit comments

Comments
 (0)