Skip to content

Commit

Permalink
Update name to be in ISO format
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEadie committed Jul 20, 2023
1 parent 36b6742 commit 512d51f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cli/src/Worms/Commands/Host.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Net.Sockets;
Expand Down Expand Up @@ -157,9 +156,7 @@ await _slackAnnouncer.AnnounceGameStarting(hostIp, config.SlackWebHook, _logger)
//if (!dryRun)
{
await _remoteReplayCreator.Create(
new RemoteReplayCreateParameters(
replay.Details.Date.ToString(CultureInfo.InvariantCulture),
replay.Paths.WAgamePath),
new RemoteReplayCreateParameters(replay.Details.Date.ToString("s"), replay.Paths.WAgamePath),
_logger,
cancellationToken);
}
Expand Down

0 comments on commit 512d51f

Please sign in to comment.