From b996a51979ff1c8818437dfb1bf02ba79bc887d9 Mon Sep 17 00:00:00 2001 From: "weirui.kwr@alibaba-inc.com" Date: Mon, 22 Jan 2024 16:54:48 +0800 Subject: [PATCH] fix minor bug --- examples/game/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/game/app.py b/examples/game/app.py index 7a166390c..95033ed2f 100644 --- a/examples/game/app.py +++ b/examples/game/app.py @@ -104,6 +104,7 @@ def get_chat(uid) -> List[List]: def fn_choice(data: gr.EventData, uid): + uid = check_uuid(uid) send_player_input(data._data["value"], uid=uid)