Skip to content

Commit f3ab46e

Browse files
authored
Merge pull request #19 from berkut0/fix/nested-data-deserialization
Fix nested data deserialization in vvvvQuery arguments
2 parents 63a694f + 694bac5 commit f3ab46e

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.gitignore

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,11 @@ MigrationBackup/
348348

349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351-
352-
/.vl
353-
/lib/net472/
354-
/lib/
355-
*/lib/
351+
352+
/.vl
353+
/lib/net472/
354+
/lib/
355+
*/lib/
356+
357+
# Visual Studio launch settings (user-specific)
358+
**/Properties/launchSettings.json

VL.CEF/src/WebBrowser.Handlers.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using Xilium.CefGlue;
33
using System.Diagnostics;
44
using Stride.Core.Mathematics;
@@ -383,7 +383,7 @@ static Spread<object> ToSpread(CefListValue list)
383383
{
384384
var x = new SpreadBuilder<object>(list.Count);
385385
for (int i = 0; i < list.Count; i++)
386-
x.Add(ToValue(list.GetValue(i)));
386+
x.Add(ToObject(list.GetValue(i)));
387387
return x.ToSpread();
388388
}
389389
}

0 commit comments

Comments
 (0)