mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-19 19:43:16 +00:00
commit
b88671bff5
2 changed files with 6 additions and 0 deletions
|
@ -70,6 +70,8 @@ class PronounService {
|
||||||
'her',
|
'her',
|
||||||
'hers',
|
'hers',
|
||||||
'hir',
|
'hir',
|
||||||
|
'it',
|
||||||
|
'its',
|
||||||
'mer',
|
'mer',
|
||||||
'mers',
|
'mers',
|
||||||
'ne',
|
'ne',
|
||||||
|
|
|
@ -369,6 +369,10 @@
|
||||||
async filterPostMeta(media) {
|
async filterPostMeta(media) {
|
||||||
let fbfix = await this.fixFacebookEncoding(media);
|
let fbfix = await this.fixFacebookEncoding(media);
|
||||||
let json = JSON.parse(fbfix);
|
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 res = json.filter(j => {
|
||||||
let ids = j.media.map(m => m.uri).filter(m => {
|
let ids = j.media.map(m => m.uri).filter(m => {
|
||||||
if(this.config.allow_video_posts == true) {
|
if(this.config.allow_video_posts == true) {
|
||||||
|
|
Loading…
Reference in a new issue