Parse IV community playlist attachments (#3465)

This commit is contained in:
ChunkyProgrammer 2023-05-13 07:23:02 -04:00 committed by GitHub
parent ff19c233c1
commit e32417b9cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -246,6 +246,13 @@ function parseInvidiousCommunityAttachments(data) {
}
}
if (data.type === 'playlist') {
return {
type: data.type,
content: data
}
}
console.error('New Invidious Community Post Type: ' + data.type)
}