Lucee 7.1.0.204

var dataRec = [
‘action’: “ping”
, ‘identifier’: “#identifier#”
, ‘msPastEpoch’: “#moment.msPastEpoch#”
];

The msPastEpoch key/value part is coming out with a type of number but I am enclosing it with a string during the creation process. Lucee should honor my datatype as the downstream process which is Google requires that value to be a string.

image

OS: Windows 11
Java Version: Java 25.0.4
Jetty Version: 12.1.12
Lucee Version: 7.1.0.204

the workaround is this:

, ‘msPastEpoch’: moment.msPastEpoch.toString()

But Lucee should honor the quotes around the value if possible