Skip to content

Commit

Permalink
fix(EML): add missing concat operator and fix typo (#5119)
Browse files Browse the repository at this point in the history
* fix(EML) add missing concat operator

* Update external_media_list.lua
  • Loading branch information
mbergen authored Nov 22, 2024
1 parent c0ab32d commit eae9fe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/external_media_links/external_media_list.lua
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ function MediaList._buildConditions(args)
additionalConditions,
'([[extradata_subject_organization::'
.. args.org
']] OR [[extradata_subject_organization::'
.. ']] OR [[extradata_subject_organization::'
.. args.org:gsub(' ', '_')
.. ']])'
)
table.insert(additionalConditions, MediaList._buildMultiKeyCondition(args.org, 'extraata_subject_organization', 5))
table.insert(additionalConditions, MediaList._buildMultiKeyCondition(args.org, 'extradata_subject_organization', 5))
end

if args.author then
Expand Down

0 comments on commit eae9fe7

Please sign in to comment.