vslides 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3255,7 +3255,7 @@ async function uploadAsset(slug, token, filename, content) {
|
|
|
3255
3255
|
"X-Filename": filename,
|
|
3256
3256
|
"Content-Type": "application/octet-stream"
|
|
3257
3257
|
},
|
|
3258
|
-
body: content
|
|
3258
|
+
body: content.toString("base64")
|
|
3259
3259
|
});
|
|
3260
3260
|
}
|
|
3261
3261
|
async function exportSlides(slug, token, format) {
|