mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-31 17:22:45 +00:00
Lint fixes
This commit is contained in:
@@ -100,12 +100,12 @@ const GoogleActions = {
|
||||
const drive = googleDrive.drive({ version: 'v3', auth });
|
||||
|
||||
const fileList = [];
|
||||
let NextPageToken = "";
|
||||
let NextPageToken = '';
|
||||
|
||||
do {
|
||||
const obj = await drive.files.list({
|
||||
pageSize : 1000,
|
||||
pageToken : NextPageToken || "",
|
||||
pageToken : NextPageToken || '',
|
||||
fields : 'nextPageToken, files(id, name, description, createdTime, modifiedTime, properties)',
|
||||
q : 'mimeType != \'application/vnd.google-apps.folder\' and trashed = false'
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user