mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-25 17:53:48 +02:00
Fix null system message
This commit is contained in:
@@ -1977,6 +1977,12 @@ speechSynthesis.getVoices();
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// delete any null in json
|
||||||
|
for (var key in json) {
|
||||||
|
if (json[key] === null) {
|
||||||
|
delete json[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
if (typeof ref === 'undefined') {
|
if (typeof ref === 'undefined') {
|
||||||
ref = {
|
ref = {
|
||||||
id: '',
|
id: '',
|
||||||
|
|||||||
Reference in New Issue
Block a user