* ExtractErrorMsg

This commit is contained in:
michael 2020-09-13 07:56:31 +00:00
parent 7a9f1cddba
commit f2cdddebcd

View File

@ -212,7 +212,18 @@ Type
function encodeInt(data : NativeInt; bits : Integer; Signed : boolean) : String;
end;
Function ExtractErrorMsg(jsError : TJSError) : String;
implementation
Function ExtractErrorMsg(jsError : TJSError) : String;
begin
if Assigned(jsError) and isString(jsError.message) then
Result:=jsError.message
else
Result:='Unknown error'
end;
end.