[Web]Fix WebSocket returning empty close-reason.

This commit is contained in:
Zae 2023-07-13 13:04:32 +08:00
parent 60f3b7967c
commit 7689f48a75

View file

@ -124,7 +124,7 @@ const GodotWebSocket = {
const ref = IDHandler.get(p_id);
if (ref && ref.readyState < ref.CLOSING) {
const code = p_code;
const reason = GodotRuntime.parseString(p_reason);
const reason = p_reason;
ref.close(code, reason);
}
},