Skip to content

Commit 3d339fd

Browse files
authored
Pass the correct argument to stopCBTimer
stopCBTimer is expecting labelHash but is using arguments.label when it needs to use arguments.labelHash
1 parent f2504fa commit 3d339fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helpers/Mixins.cfm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @labelHash The timer label hash to stop
4040
*/
4141
function stopCBTimer( required labelHash ){
42-
return variables.wirebox.getInstance( "Timer@cbdebugger" ).stop( arguments.label );
42+
return variables.wirebox.getInstance( "Timer@cbdebugger" ).stop( arguments.labelHash );
4343
}
4444
4545
/**
@@ -79,4 +79,4 @@
7979
return getCBDebugger().pushTracer( argumentCollection=arguments );
8080
}
8181
82-
</cfscript>
82+
</cfscript>

0 commit comments

Comments
 (0)