diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 01:55:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 01:55:02 +0900 |
| commit | f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45 (patch) | |
| tree | 04b0e83f78f39c4cf8ca1cb29895aecc63179182 | |
| parent | Fix bug (diff) | |
| download | sharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.tar.gz sharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.tar.bz2 sharkey-f51ad26fa10e8f32b4e46c982fc7f6fd35fe2e45.zip | |
[Client] Fix bug
| -rw-r--r-- | src/web/app/mobile/tags/drive.tag | 3 |
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; |