Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions JsonConverter.bas
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,8 @@ Private Function json_ParseArray(json_String As String, ByRef json_Index As Long
ElseIf VBA.Mid$(json_String, json_Index, 1) = "," Then
json_Index = json_Index + 1
json_SkipSpaces json_String, json_Index
ElseIf VBA.Mid$(json_String, json_Index, 1) = vbNullString Then
Err.Raise 10001, "JSONConverter", json_ParseErrorMessage(json_String, json_Index, "Expecting closing string or array")
End If

json_ParseArray.Add json_ParseValue(json_String, json_Index)
Expand Down