Update Activity.vue

This commit is contained in:
Daniel Supernault 2019-06-03 14:57:48 -06:00
parent 7a89256219
commit d793e2cff2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 7 deletions

View File

@ -113,11 +113,7 @@ export default {
methods: {
fetchNotifications() {
axios.get('/api/v1/notifications', {
params: {
pg: false
}
})
axios.get('/api/v1/notifications')
.then(res => {
let data = res.data.filter(n => {
if(n.type == 'share' && !status) {
@ -140,8 +136,7 @@ export default {
}
axios.get('/api/v1/notifications', {
params: {
page: this.notificationCursor,
pg: false
page: this.notificationCursor
}
}).then(res => {
if(res.data.length > 0) {