From: AeonLucid Date: Thu, 22 Oct 2020 20:29:13 +0000 (+0200) Subject: Fix appveyor and don't flush to disk X-Git-Tag: v1.2.2~96^2~50 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=602fe821f2349b66cabd7fccb6a9a745f2f67d6c;p=rhonda%2Fimpostor.git Fix appveyor and don't flush to disk --- diff --git a/src/Impostor.Server/Impostor.Server.csproj b/src/Impostor.Server/Impostor.Server.csproj index 7c3f317..cbcbf74 100644 --- a/src/Impostor.Server/Impostor.Server.csproj +++ b/src/Impostor.Server/Impostor.Server.csproj @@ -39,11 +39,6 @@ - - Always - PreserveNewest - true - Always PreserveNewest diff --git a/src/Impostor.Server/Recorder/PacketRecorder.cs b/src/Impostor.Server/Recorder/PacketRecorder.cs index 23be21a..3d41890 100644 --- a/src/Impostor.Server/Recorder/PacketRecorder.cs +++ b/src/Impostor.Server/Recorder/PacketRecorder.cs @@ -173,7 +173,6 @@ namespace Impostor.Server.Recorder data.Position = 0; await data.CopyToAsync(_writer); - await _writer.FlushAsync(); } } finally