Fix reporting size / position

This commit is contained in:
Lars Vahlenberg
2024-01-04 23:33:39 +01:00
parent 741712f89f
commit f7c6edf849

View File

@@ -51,7 +51,7 @@ public class DataDescriptorStream : Stream
public override long Position
{
get => _stream.Position;
get => _stream.Position - _start;
set => _stream.Position = value;
}