We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322e82b commit 7e60f7cCopy full SHA for 7e60f7c
Project/Sources/Methods/AI_CallBack.4dm
@@ -14,8 +14,12 @@ Else
14
15
If ($result.errors.length>0)
16
$answer:=""
17
- $answer+="**"+Localized string:C991("ErrorCodeColon")+"**"
18
- $answer+=$result.errors[0].code+"\r"
+
+ 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
23
$answer+="**"+Localized string:C991("ErrorMessageColon")+"**"
24
$answer+=$result.errors[0].message
25
Else
0 commit comments