Fix backwards compatibility issues

This commit is contained in:
Jordan Brown
2022-09-27 00:41:24 -04:00
parent fcaea3e0fe
commit 80e6eb2b10
4 changed files with 19 additions and 16 deletions
@@ -30,14 +30,6 @@ namespace Tgstation.Server.Client
return new CachedResponseStream(response, stream);
}
/// <inheritdoc />
public override async ValueTask DisposeAsync()
{
await base.DisposeAsync().ConfigureAwait(false);
await responseStream.DisposeAsync().ConfigureAwait(false);
response.Dispose();
}
/// <inheritdoc />
public override bool CanRead => responseStream.CanRead;