Skip to content

Commit

Permalink
Clean meta values from special characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfvc committed Sep 7, 2023
1 parent 4451e6f commit 718d273
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def _get_meta(self, job: dict) -> Meta:
for item in entry if isinstance(entry, list) else [entry]:
value = get_value(item, job)
if value is not None:
values.append(value)
values.append(quote(value, safe=""))
if key == "site": # site is a special case
break
if not values:
Expand Down

0 comments on commit 718d273

Please sign in to comment.