Missing da causes invalid json

This commit is contained in:
softsimon 2024-06-22 10:37:14 +09:00
parent e1e4e79b68
commit c581be0e97
No known key found for this signature in database
GPG key ID: 488D7DCFB5A430D7

View file

@ -1300,7 +1300,7 @@ class WebsocketHandler {
// and zips it together into a valid JSON object // and zips it together into a valid JSON object
private serializeResponse(response): string { private serializeResponse(response): string {
return '{' return '{'
+ Object.keys(response).map(key => `"${key}": ${response[key]}`).join(', ') + Object.keys(response).filter(key => response[key] != null).map(key => `"${key}": ${response[key]}`).join(', ')
+ '}'; + '}';
} }