Bugfix
Detail
#28877
TL script: Missing normalization when reading from the personal configuration
If values are saved in the personal configuration via TL script, this is done as JSON. JSON does not recognize different number types. For example, the double value 21.0 is saved as 21. When loading from the configuration, the long value 21 is read out.
As TL-Script always works with double, this results in an error in the log. The application continues to function without any problems.
To avoid this error in the log, the function should normalize the read value.