sync NoOBSWS with upstream

This commit is contained in:
Lera Elvoé 2024-03-16 10:26:29 +03:00
parent 804abfed64
commit 6f5454bf3a
No known key found for this signature in database

View file

@ -259,7 +259,7 @@ class Message:
var cameled = {}
for prop in d:
prop = prop as String
if d[prop] is Dictionary:
if d[prop] is Dictionary and prop != "inputSettings":
cameled[prop.to_camel_case()] = snake_to_camel_recursive(d[prop])
else:
cameled[prop.to_camel_case()] = d[prop]