From 1f53ca6010f6f5fad12a8512b4f7cb824e454cea Mon Sep 17 00:00:00 2001 From: Abhijeet Krishnan Date: Sun, 18 Feb 2024 20:14:28 -0500 Subject: [PATCH] Fix issues with '&' used for HTML escapes also being being escaped --- src/frame_service/wavu/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame_service/wavu/utils.py b/src/frame_service/wavu/utils.py index 1b692c6..f1acad7 100644 --- a/src/frame_service/wavu/utils.py +++ b/src/frame_service/wavu/utils.py @@ -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(","))