nodebb-plugin-facebook-post 1.0.38 → 1.0.39
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/library.js +1 -1
- package/package.json +1 -1
package/library.js
CHANGED
|
@@ -350,7 +350,7 @@ async function postToInstagram(ctx) {
|
|
|
350
350
|
const form = new URLSearchParams();
|
|
351
351
|
form.append('media_type', 'CAROUSEL');
|
|
352
352
|
form.append('caption', caption);
|
|
353
|
-
form.append('children',
|
|
353
|
+
form.append('children', JSON.stringify(childIds));
|
|
354
354
|
form.append('access_token', token);
|
|
355
355
|
|
|
356
356
|
const carouselResp = await axios.post(`${baseUrl}/media`, form, {
|
package/package.json
CHANGED