1
0
Fork 0

Update Activity.vue component

This commit is contained in:
Daniel Supernault 2019-09-30 21:51:40 -06:00
parent f4039ce218
commit 6ef7597356
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 1 deletions

View File

@ -115,7 +115,11 @@ export default {
methods: {
fetchNotifications() {
axios.get('/api/pixelfed/v1/notifications')
axios.get('/api/pixelfed/v1/notifications', {
params: {
pg: true
}
})
.then(res => {
let data = res.data.filter(n => {
if(n.type == 'share' && !status) {
@ -138,6 +142,7 @@ export default {
}
axios.get('/api/pixelfed/v1/notifications', {
params: {
pg: true,
page: this.notificationCursor
}
}).then(res => {