scripts with syntax error do not create an error message anymore
I have a couple of lua scripts (in the scripts folder) making my daily life with Lightroom Classic easier.
This works great, even in the current version 13.4
Today I started to write a new script and realized, that if there is a syntax error, the script simply does nothing.
In previous versions of Lightroom I got a message box telling me what's wrong, but with 13.4 nothing happens.
Assume the following script:
note the syntax error in the first line
lo cal LrDialogs = import 'LrDialogs'
local LrApplication = import 'LrApplication'
local catalog = LrApplication.activeCatalog()
local LrTasks = import 'LrTasks'
LrTasks.startAsyncTask( function()
local targetPhoto = catalog:getTargetPhoto()
local photoId = targetPhoto.localIdentifier
LrDialogs.message("PhotoIDs", "photoId: " .. tostring(photoId))
end) This buggy script does not produce a syntax error.
Can anyone confirm this?
Thanks
Jacques
