diff --git a/box.json b/box.json index 17a3489..e61a59e 100644 --- a/box.json +++ b/box.json @@ -2,7 +2,7 @@ "name":"ColdBox Debugger", "author":"Ortus Solutions 2022-SEP +## [4.0.1] => 2022-NOV-22 + +### Fixed + +* Adobe dumb array by value + +---- + +## [4.0.0] => 2022-NOV-22 ### Added diff --git a/models/DebuggerService.cfc b/models/DebuggerService.cfc index 650c344..213b1d5 100755 --- a/models/DebuggerService.cfc +++ b/models/DebuggerService.cfc @@ -425,8 +425,7 @@ component ); // New Profiler record to store into the singleton stack - var targetStorage = getProfilerStorage(); - arrayPrepend( targetStorage, request.cbDebugger ); + var targetStorage = getProfilerStorage().prePend( request.cbDebugger ); // Are we using cache storage if ( variables.debuggerConfig.requestTracker.storage eq "cachebox" ) {