From be5a19f520de32a5c2b5f01b4890625963cd51cf Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 7 Jun 2017 03:19:28 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/desktop/tags/notifications.tag | 4 ++-- src/web/app/mobile/tags/notifications.tag | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/web/app/desktop/tags/notifications.tag b/src/web/app/desktop/tags/notifications.tag index d5ca9e2eb..5a6fd346d 100644 --- a/src/web/app/desktop/tags/notifications.tag +++ b/src/web/app/desktop/tags/notifications.tag @@ -176,6 +176,7 @@ width 100% padding 16px color #555 + border-top solid 1px rgba(0, 0, 0, 0.05) > .empty margin 0 @@ -251,9 +252,8 @@ const max = 30; this.api('i/notifications', { - folder_id: this.folder ? this.folder.id : null, limit: max + 1, - max_id: this.notifications[this.notifications.length - 1]._id + max_id: this.notifications[this.notifications.length - 1].id }).then(notifications => { if (notifications.length == max + 1) { this.moreNotifications = true; diff --git a/src/web/app/mobile/tags/notifications.tag b/src/web/app/mobile/tags/notifications.tag index 0f9e0b0a6..89651e1ce 100644 --- a/src/web/app/mobile/tags/notifications.tag +++ b/src/web/app/mobile/tags/notifications.tag @@ -46,6 +46,7 @@ width 100% padding 16px color #555 + border-top solid 1px rgba(0, 0, 0, 0.05) > .empty margin 0 @@ -121,9 +122,8 @@ const max = 30; this.api('i/notifications', { - folder_id: this.folder ? this.folder.id : null, limit: max + 1, - max_id: this.notifications[this.notifications.length - 1]._id + max_id: this.notifications[this.notifications.length - 1].id }).then(notifications => { if (notifications.length == max + 1) { this.moreNotifications = true;