We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7325672 commit 2a12933Copy full SHA for 2a12933
1 file changed
src/Delius.Parser/ParserConfig/Models/Field.cs
@@ -44,7 +44,7 @@ public string Parse(string text)
44
else
45
{
46
var date = ParseDatetime(d);
47
- return date.ToString();
+ return date.ToString(cultureInfo);
48
}
49
case FieldType.ShortDate:
50
string sd = text.Substring(StartingPoint, Length).Replace("~", "");
@@ -55,7 +55,7 @@ public string Parse(string text)
55
56
57
var date = ParseDate(sd);
58
59
60
61
throw new ApplicationException("Unknown field type: " + Type);
0 commit comments