1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-22 17:48:01 +02:00

Fix for starting with array

This commit is contained in:
Brian Fiete 2021-09-10 11:51:30 -07:00
parent 88c4b2a818
commit a0343678bc

View file

@ -2363,6 +2363,8 @@ namespace Beefy.utils
continue; continue;
if (c == '{') if (c == '{')
isJson = true; isJson = true;
if (c == '[')
isJson = true;
break; break;
} }