Fixes pixelfed/pixelfed#5272 Instagram import fails silently if there's one post only in posts_1.json

This commit is contained in:
Arnaud 2024-09-08 20:34:00 +02:00
parent 6615408023
commit f6590570ff

View file

@ -369,6 +369,10 @@
async filterPostMeta(media) {
let fbfix = await this.fixFacebookEncoding(media);
let json = JSON.parse(fbfix);
/* Sometimes the JSON isn't an array, when there's only one post */
if (!Array.isArray(json)) {
json = new Array(json);
}
let res = json.filter(j => {
let ids = j.media.map(m => m.uri).filter(m => {
if(this.config.allow_video_posts == true) {