Skip to content

Commit 98d1e56

Browse files
committed
Update VBA-JSON to v1.0.0-rc.5
Fixes #81
1 parent 9c75f10 commit 98d1e56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebHelpers.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ Private Function web_GetUrlEncodedKeyValue(Key As Variant, Value As Variant) As
13961396
End Function
13971397

13981398
''
1399-
' VBA-JSON v1.0.0-rc.4
1399+
' VBA-JSON v1.0.0-rc.5
14001400
' (c) Tim Hall - https://github.com/timhall/VBA-JSONConverter
14011401
'
14021402
' JSON Converter for VBA
@@ -1614,7 +1614,7 @@ Public Function ConvertToJson(ByVal json_DictionaryCollectionOrArray As Variant,
16141614
Case Else
16151615
' Number
16161616
On Error Resume Next
1617-
ConvertToJson = json_DictionaryCollectionOrArray
1617+
ConvertToJson = VBA.Replace(json_DictionaryCollectionOrArray, ",", ".")
16181618
On Error GoTo 0
16191619
End Select
16201620
End Function

0 commit comments

Comments
 (0)