mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor(Google Sheets Node): Stop reporting to Sentry sheet not found error (no-changelog) (#7617)
https://n8nio.sentry.io/issues/4264383378
This commit is contained in:
@@ -418,7 +418,10 @@ export class GoogleSheetsTrigger implements INodeType {
|
||||
}
|
||||
|
||||
const googleSheet = new GoogleSheet(documentId, this);
|
||||
const sheetName: string = await googleSheet.spreadsheetGetSheetNameById(sheetId);
|
||||
const sheetName: string = await googleSheet.spreadsheetGetSheetNameById(
|
||||
this.getNode(),
|
||||
sheetId,
|
||||
);
|
||||
const options = this.getNodeParameter('options') as IDataObject;
|
||||
|
||||
const previousRevision = workflowStaticData.lastRevision as number;
|
||||
|
||||
Reference in New Issue
Block a user