Skip to content

Fix handling prepending field if target blank or prepend is multival

Compare
Choose a tag to compare
@kspurgin kspurgin released this 20 Jul 20:26
· 781 commits to main since this release
6538525

For target_field=';foo' and prepended_field='q', it was returning
'q: ;q: foo'. Now it returns ';q: foo'

For target_field=';foo' and prepended_field='q;t', it was returning
'q: ;t: foo'. Now it returns ';t: foo'

For target_field='foo;bar;baz' and prepended_field='q;t', it was returning
'q: foo;t: bar;t:baz'. Now it returns 'q: foo;t: bar;baz'