You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you have a way to reproduce this? All the code in Quick that calls .update first generates query param structs using the generateQueryParamStruct method on QuickBuilder.
quick 7.3.1
quick/models/QuickQb.cfc
Hit a case where Quick tries to treat a string as a struct, e.g. in the following, if
values
is something like{someColumn: "someValue"}
The structKeyExists becomes
structKeyExists( "someValue", "isQuickBuilder" )
which fails with "cannot convert string to struct".Our current workaround is:
The text was updated successfully, but these errors were encountered: