Browse Source

Update PortfolioSettings component, improve recent posts filtering by pf_type

Daniel Supernault 2 years ago
parent
commit
e91c25c0d6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/assets/js/components/PortfolioSettings.vue

+ 2 - 2
resources/assets/js/components/PortfolioSettings.vue

@@ -455,10 +455,10 @@
             },
 
             loadRecentPosts() {
-                axios.get('/api/v1/accounts/' + this.user.id + '/statuses?only_media=1&media_types=photo&limit=100')
+                axios.get('/api/v1/accounts/' + this.user.id + '/statuses?only_media=1&media_types=photo&limit=100&_pe=1')
                 .then(res => {
                     if(res.data.length) {
-                        this.recentPosts = res.data.filter(p => p.visibility === "public");
+                        this.recentPosts = res.data.filter(p => ['photo', 'photo:album'].includes(p.pf_type) && p.visibility === "public");
                     }
                 })
                 .then(() => {