-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
FileMaker 12 syntax has changed to not require an extra "=" when performing a query. So I inserted a temporary workaround in line 422:
if(#db -> 'isfilemaker') => {
// FileMaker 12 and later syntax
#searchparams -> merge(array(-op='eq', .'userfield' = #_username))
// FileMaker 11 and earlier syntax
// #searchparams -> merge(array(-op='eq', .'userfield' = '="' + #_username + '"'))
elseThis ought to be handled better by automatically detecting the version of FileMaker if at all possible.
Metadata
Metadata
Assignees
Labels
No labels