Skip to content

Commit

Permalink
* Adobe dumb array by value
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Nov 22, 2022
1 parent bc3411c commit 2f4bd24
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name":"ColdBox Debugger",
"author":"Ortus Solutions <[email protected]",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbdebugger/@build.version@/[email protected]@.zip",
"version":"4.1.0",
"version":"4.0.1",
"slug":"cbdebugger",
"type":"modules",
"homepage":"https://github.com/coldbox-modules/cbdebugger",
Expand Down
10 changes: 9 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

----

## [4.0.0] => 2022-SEP
## [4.0.1] => 2022-NOV-22

### Fixed

* Adobe dumb array by value

----

## [4.0.0] => 2022-NOV-22

### Added

Expand Down
3 changes: 1 addition & 2 deletions models/DebuggerService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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" ) {
Expand Down

0 comments on commit 2f4bd24

Please sign in to comment.