File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -649,8 +649,8 @@ export class Executor {
649649 if ( this . workflowInput && typeof this . workflowInput === 'object' ) {
650650 // Check if this is a chat workflow input (has both input and conversationId)
651651 if (
652- Object . prototype . hasOwnProperty . call ( this . workflowInput , 'input' ) &&
653- Object . prototype . hasOwnProperty . call ( this . workflowInput , 'conversationId' )
652+ Object . hasOwn ( this . workflowInput , 'input' ) &&
653+ Object . hasOwn ( this . workflowInput , 'conversationId' )
654654 ) {
655655 // Chat workflow: extract input and conversationId to root level
656656 const starterOutput = {
@@ -694,8 +694,8 @@ export class Executor {
694694 if ( this . workflowInput && typeof this . workflowInput === 'object' ) {
695695 // Check if this is a chat workflow input (has both input and conversationId)
696696 if (
697- Object . prototype . hasOwnProperty . call ( this . workflowInput , 'input' ) &&
698- Object . prototype . hasOwnProperty . call ( this . workflowInput , 'conversationId' )
697+ Object . hasOwn ( this . workflowInput , 'input' ) &&
698+ Object . hasOwn ( this . workflowInput , 'conversationId' )
699699 ) {
700700 // Chat workflow: extract input and conversationId to root level
701701 starterOutput = {
You can’t perform that action at this time.
0 commit comments