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: 1 addition & 1 deletion JsonConverter.bas
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ Private Function json_StringIsLargeNumber(json_String As Variant) As Boolean
json_Length = VBA.Len(json_String)

' Length with be at least 16 characters and assume will be less than 100 characters
If json_Length >= 16 And json_Length <= 100 Then
If json_Length >= 16 And json_Length <= 100 And Left(json_String, 1) <> "0" Then
Dim json_CharCode As String

json_StringIsLargeNumber = True
Expand Down