From 2e134cffebe88b8ae59be35dc365c8e930b8be59 Mon Sep 17 00:00:00 2001 From: Carl Johnsen Date: Fri, 7 Feb 2025 09:56:54 +0100 Subject: [PATCH] Changed to UTC time for timestamps --- Tools/RemoteSynchronization/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/RemoteSynchronization/Program.cs b/Tools/RemoteSynchronization/Program.cs index 390130f91..3a0f216ff 100644 --- a/Tools/RemoteSynchronization/Program.cs +++ b/Tools/RemoteSynchronization/Program.cs @@ -635,7 +635,7 @@ destination will be verified before being overwritten (if they seemingly match). private static async Task RenameAsync(IBackend b, IEnumerable files, Config config) { long successful_renames = 0; - string prefix = $"{System.DateTime.Now:yyyyMMddHHmmss}.old"; + string prefix = $"{System.DateTime.UtcNow:yyyyMMddHHmmss}.old"; using var downloaded = new MemoryStream(); long i = 0, n = files.Count();