Skip to content

Commit 7e60f7c

Browse files
committed
fix : ACI0105627
1 parent 322e82b commit 7e60f7c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Project/Sources/Methods/AI_CallBack.4dm

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ Else
1414

1515
If ($result.errors.length>0)
1616
$answer:=""
17-
$answer+="**"+Localized string:C991("ErrorCodeColon")+"**"
18-
$answer+=$result.errors[0].code+"\r"
17+
18+
If (Value type:C1509($result.errors[0].code)=Is real:K8:4) // ACI0105627
19+
$answer+="**"+Localized string:C991("ErrorCodeColon")+"**"
20+
$answer+=$result.errors[0].code+"\r"
21+
End if
22+
1923
$answer+="**"+Localized string:C991("ErrorMessageColon")+"**"
2024
$answer+=$result.errors[0].message
2125
Else

0 commit comments

Comments
 (0)