Merge pull request #909 from Maks1mS/fix-getNext-method

Fix the getNext method in the TelegrafExecutionContext class
This commit is contained in:
Alexander Bukhalo
2022-08-24 17:32:14 +03:00
committed by GitHub

View File

@@ -28,6 +28,6 @@ export class TelegrafExecutionContext
} }
getNext<T = any>(): T { getNext<T = any>(): T {
return this.getArgByIndex(0); return this.getArgByIndex(1);
} }
} }