Skip to content

Commit

Permalink
Merge pull request #3 from FCSCOpendata/fix/bilingual-search-support
Browse files Browse the repository at this point in the history
Bilingual search support bug fix
  • Loading branch information
sagargg authored Feb 24, 2022
2 parents 90b94e5 + d718083 commit 1c30cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/fluent/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def validator(key, data, errors, context):

for lang in output:
del extras[prefix + lang]
data[key] = json.dumps(output)
data[key] = json.dumps(output, ensure_ascii=False)

return validator

Expand Down

0 comments on commit 1c30cdf

Please sign in to comment.