Skip to content

Commit

Permalink
Use faster date parsing for date only values
Browse files Browse the repository at this point in the history
  • Loading branch information
joyfullservice committed Nov 14, 2023
1 parent e18d818 commit b7985e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Version Control.accda.src/modules/modUtcConverter.bas
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ Public Function ParseIso(utc_IsoString As String _
ParseIso = utc_DateTimeOut
End If
Else ' Assume any "Date Only" Text doesn't have a timezone (they aren't converted the other way, either)
ParseIso = ConvDateUTC(utc_Parts(0))
ParseIso = ConvDateUTC2(utc_Parts(0))
End If
Exit Function
#End If
Expand Down

0 comments on commit b7985e9

Please sign in to comment.