summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-06-07 01:55:02 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-06-07 01:55:02 +0900
commitf51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45 (patch)
tree04b0e83f78f39c4cf8ca1cb29895aecc63179182 /src
parentFix bug (diff)
downloadsharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.tar.gz
sharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.tar.bz2
sharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.zip
[Client] Fix bug
Diffstat (limited to 'src')
-rw-r--r--src/web/app/mobile/tags/drive.tag3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/app/mobile/tags/drive.tag b/src/web/app/mobile/tags/drive.tag
index 45437ff012..ed918d1040 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;