[Solved] Problem with transform("JSONPATH".. after upgrade to 2.5.6.2

I have a rule converting darksky weather data. After upgrade my transform(“JSONPATH” command returns the whole json and not the element i ask for !

example

var String t = ‘’;

var String darksky_json = sendHttpGetRequest("https://api.darksky.net/forecast/573da79ad2e8458ce847dcd084524f10/55.215624,11.743367?units=auto&lang=da&e$

this returns json ok
2020-07-12 13:25:00.137 [INFO ] [se.smarthome.model.script.DS_Weather] - {“latitude”:55.215624,“longitude”:11.743367,“timezone”:“Europe/Copenhagen”,
“currently”:{“time”:1594553100,“summary”:“Skyet”,“icon”:“partly-cloudy-day”,“precipIntensity”:0.055,“precipProbability”:0.08,“precipType”:“rain”,“temperature”:16.93,“apparentTemperature”:16.93,“dewPoint”:9.09,“humidity”:0.6,“pressure”:1025.2,“windSpeed”:7.5,“windGust”:9.94,“windBearing”:287,“cloudCover”:0.67,“uvIndex”:4,“visibility”:16.093,“ozone”:348.7},“offset”:2}

Try to get element currently.time.
var long ttime = transform(“JSONPATH”, “$.currently.time.”, darksky_json)
logInfo(“Tranform0”,ttime)

this returns
2020-07-12 13:26:00.171 [INFO ] [pse.smarthome.model.script.Tranform0] - {“latitude”:55.215624,“longitude”:11.743367,“timezone”:“Europe/Copenhagen”,“currently”:{“time”:1594553160,“summary”:“Skyet”,“icon”:“partly-cloudy-day”,“precipIntensity”:0.055,“precipProbability”:0.08,“precipType”:“rain”,“temperature”:16.94,“apparentTemperature”:16.94,“dewPoint”:9.09,“humidity”:0.6,“pressure”:1025.2,“windSpeed”:7.51,“windGust”:9.94,“windBearing”:287,“cloudCover”:0.67,“uvIndex”:4,“visibility”:16.093,“ozone”:348.6},“offset”:2}

From documentation my command seems to be OK, and this has been working fine before upgrade

any ideas ?

Thanks Peter

Works after removing the last .(dot) in $.currently.time. <-