Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
grantcopley committed Feb 21, 2025
1 parent 53667c4 commit 9f4fb70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/CBWIREController.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ component singleton {

if ( find( "@", local.fullComponentPath ) ) {
// This is a module reference, find in our module
var params = listToArray( local.fullComponentPath, "@" );
if ( params.len() != 2 ) {
var local.params = listToArray( local.fullComponentPath, "@" );
if ( local.params.len() != 2 ) {
throw( type="ModuleNotFound", message = "CBWIRE cannot locate the module or component using '" & local.fullComponentPath & "'." );
}
// modify local.fullComponentPath to full path for module
Expand Down

0 comments on commit 9f4fb70

Please sign in to comment.