Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
grantcopley committed Oct 8, 2024
1 parent 83d8011 commit c695350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Component.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ component output="true" {
// Extract the counter from the tag name
local.counter = key.replaceNoCase( "assets", "" );
// Create assets tag id based on hash of assets
local.assetsTagId = hash( value );
local.assetsTagId = hash( value, "MD5" );
// Track the assets tag
variables._assets[ local.assetsTagId ] = value;
local.requestAssets = variables._CBWIREController.getRequestAssets();
Expand Down

0 comments on commit c695350

Please sign in to comment.