Skip to content

Commit

Permalink
Fix copy-paste oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
joyfullservice committed Nov 14, 2023
1 parent 286679d commit aff7be9
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 @@ -794,7 +794,7 @@ Private Function ConvTimeUTC2(ByVal InVal As String) As Date
ConvTimeUTC2 = TimeSerial(varParts(0), varParts(1), Left(varParts(2), 2))
Else
' Fall back to slower RegEx function
ConvTimeUTC2 = ConvDateUTC(InVal)
ConvTimeUTC2 = ConvTimeUTC(InVal)
End If

End Function
Expand Down

0 comments on commit aff7be9

Please sign in to comment.