Skip to content

Commit

Permalink
update module, and component
Browse files Browse the repository at this point in the history
  • Loading branch information
vtalas committed Mar 1, 2024
1 parent 7a02c26 commit c6eea68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/appmixer/google/drive/NewFile/NewFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const detectNewFiles = async function(context) {
lock = await context.lock(context.componentId, { maxRetryCount: 0 });
} catch (err) {
await context.stateSet('hasSkippedMessage', true);
return context.response();
return;
}

try {
Expand Down Expand Up @@ -148,7 +148,7 @@ module.exports = {
includeRemoved: false,
pageToken,
requestBody: {
address: context.getWebhookUrl(),
address: context.getWebhookUrl() + '?enqueueOnly=true',
id: context.componentId,
payload: true,
token: context.componentId,
Expand Down
2 changes: 1 addition & 1 deletion src/appmixer/google/drive/NewFile/component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "appmixer.google.drive.NewFile",
"author": "Jimoh Damilola <[email protected]>",
"description": "This trigger fires every time there's new file. It does not download the file! If you need the content of the file use the ExportFile component.",
"version": "1.0.3",
"version": "1.0.4",
"private": false,
"webhook": true,
"tick": true,
Expand Down
1 change: 1 addition & 0 deletions src/appmixer/google/drive/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "appmixer.google.drive",
"label": "Google Drive",
"category": "applications",
"version": "1.1.0",
"description": "Google Drive is a file storage and synchronization service. It allows users to store files on their servers, synchronize files across devices, and share files.",
"icon": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMC8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvVFIvMjAwMS9SRUMtU1ZHLTIwMDEwOTA0L0RURC9zdmcxMC5kdGQnPjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzJweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGc+PHBvbHlsaW5lIGZpbGw9IiM1MzdBQkQiIHBvaW50cz0iMzEuODY4LDIxIDkuODY4LDIxIDQuODY4LDMwIDI2LjU1NiwzMCAgIi8+PHBvbHlsaW5lIGZpbGw9IiMyRUI2NzIiIHBvaW50cz0iMTAuOTYyLDIgLTAuMDM4LDIwIDQuOTYyLDMwIDE1LjY4MywxMC4zNDUgICIvPjxwb2x5bGluZSBmaWxsPSIjRkVEMTRCIiBwb2ludHM9IjIwLjk2MiwyIDEwLjk2MiwyIDIxLjcxMiwyMSAzMS45NjIsMjEgMjAuOTYyLDIgICIvPjwvZz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48L3N2Zz4="
}

0 comments on commit c6eea68

Please sign in to comment.