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
Save a record leading to an asset save, an error will be thrown:
The offending line should be:
skygear-SDK-JS/packages/skygear-core/lib/database.js
Line 780 in c1a1790
Record save successfully
Shown above.
The text was updated successfully, but these errors were encountered:
If your app doesn't rely on Buffer, you could polyfill the global Buffer name to workaround it:
class FakeBuffer {} if (typeof Buffer === 'undefined') global.Buffer = FakeBuffer;
Put it in your program's entry point.
Sorry, something went wrong.
Just did a search in source code. These are where the SDK use Buffer.
Buffer
https://github.com/SkygearIO/skygear-SDK-JS/blob/master/packages/skygear-core/lib/database.js#L780 https://github.com/SkygearIO/skygear-SDK-JS/blob/master/packages/skygear-core/lib/asset.js#L58
No branches or pull requests
Save a record leading to an asset save, an error will be thrown:
The offending line should be:
skygear-SDK-JS/packages/skygear-core/lib/database.js
Line 780 in c1a1790
Expected Results
Record save successfully
Actual Results
Shown above.
Steps to reproduce
The text was updated successfully, but these errors were encountered: