From f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 7 Jun 2017 01:55:02 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/mobile/tags/drive.tag | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/web/app/mobile/tags/drive.tag b/src/web/app/mobile/tags/drive.tag index 45437ff01..ed918d104 100644 --- a/src/web/app/mobile/tags/drive.tag +++ b/src/web/app/mobile/tags/drive.tag @@ -416,7 +416,8 @@ // ファイル一覧取得 this.api('drive/files', { folder_id: this.folder ? this.folder.id : null, - limit: max + 1 + limit: max + 1, + max_id: this.files[this.files.length - 1]._id }).then(files => { if (files.length == max + 1) { this.moreFiles = true;