mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
sync NoOBSWS with upstream
This commit is contained in:
parent
804abfed64
commit
6f5454bf3a
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue