In FifoStream.cs, class FifoStream, line 129 your code is: ``` csharp current.offset -= remaining; ``` It should be ``` csharp current.offset += remaining; ```
In FifoStream.cs, class FifoStream, line 129 your code is:
It should be