Skip to content

Commit

Permalink
Fix issues with '&' used for HTML escapes also being being escaped
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhijeetKrishnan committed Feb 19, 2024
1 parent f5713ca commit 1f53ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frame_service/wavu/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _convert_json_move(move_json: Any) -> WavuMove:

name = html.unescape(_normalize_data(_process_links(move_json["name"])))

input = _normalize_data(move_json["input"])
input = html.unescape(html.unescape(_normalize_data(move_json["input"])))

if "alias" in move_json:
alias = tuple(_normalize_data(move_json["alias"]).split(","))
Expand Down

0 comments on commit 1f53ca6

Please sign in to comment.