Skip to content

Commit

Permalink
Force invariant culture in console renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
khellang authored and ragnarstolsmark committed Oct 18, 2023
1 parent 16a0ebc commit f3d1ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hangfire.Console/Dashboard/ConsoleRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public static void RenderLineBuffer(StringBuilder builder, IConsoleStorage stora

var items = ReadLines(storage, consoleId, ref start);

builder.AppendFormat("<div class=\"line-buffer\" data-n=\"{0}\">", start);
builder.AppendFormat(CultureInfo.InvariantCulture, "<div class=\"line-buffer\" data-n=\"{0}\">", start);
RenderLines(builder, items, consoleId.DateValue);
builder.Append("</div>");
}
Expand Down

0 comments on commit f3d1ef6

Please sign in to comment.