We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In DefaultStorageRpc.read we set the content range as:
public byte[] read(StorageObject from, Map<Option, ?> options, long position, int bytes) throws StorageException { ... downloader.setContentRange(position, (int) position + bytes); ... }
Accorting to here positions are inclusive, so we should probably do: downloader.setContentRange(position, (int) position + bytes - 1);
downloader.setContentRange(position, (int) position + bytes - 1);
In DefaultStorageRpc.read we set the content range as:
Accorting to here positions are inclusive, so we should probably do:
downloader.setContentRange(position, (int) position + bytes - 1);