We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/dfahlander/Dexie.js/blob/b6d621ef25075f4f54cfdd923834bf939351cd93/addons/dexie-export-import/src/tson.ts#L74
The above reference causes blob type finalize method to always provide the full bytes instead of the sliced bytes.
finalize
https://github.com/dfahlander/Dexie.js/blob/b6d621ef25075f4f54cfdd923834bf939351cd93/addons/dexie-export-import/src/tson.ts#L40
From the above reference we could tell the start and end properties belong to data instead of the blob.
start
end
data
The fixes is to correct the reference.
The text was updated successfully, but these errors were encountered:
#1271 for tracking
Sorry, something went wrong.
No branches or pull requests
https://github.com/dfahlander/Dexie.js/blob/b6d621ef25075f4f54cfdd923834bf939351cd93/addons/dexie-export-import/src/tson.ts#L74
The above reference causes blob type
finalize
method to always provide the full bytes instead of the sliced bytes.https://github.com/dfahlander/Dexie.js/blob/b6d621ef25075f4f54cfdd923834bf939351cd93/addons/dexie-export-import/src/tson.ts#L40
From the above reference we could tell the
start
andend
properties belong todata
instead of the blob.The fixes is to correct the reference.
The text was updated successfully, but these errors were encountered: