[Client] Fix bug

This commit is contained in:
syuilo 2017-06-07 01:55:02 +09:00
parent cb543daf28
commit f51ad26fa1
1 changed files with 2 additions and 1 deletions

View File

@ -416,7 +416,8 @@
// ファイル一覧取得 // ファイル一覧取得
this.api('drive/files', { this.api('drive/files', {
folder_id: this.folder ? this.folder.id : null, 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 => { }).then(files => {
if (files.length == max + 1) { if (files.length == max + 1) {
this.moreFiles = true; this.moreFiles = true;