We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5425f05 commit 37feaa6Copy full SHA for 37feaa6
1 file changed
system/Bootstrap.cfc
@@ -504,9 +504,13 @@ component serializable="false" accessors="true" {
504
// If the file is "index.(cfm|bxm)" then we will process it
505
if ( reFindNoCase( "index\.(cfm|bxm)", listLast( arguments.targetPage, "/" ) ) ) {
506
processColdBoxRequest();
507
+ return false;
508
+ } else {
509
+ // Just load the module mappings in case we are in a module request or a web socket request.
510
+ application[ locateAppKey() ].getModuleService().loadMappings();
511
+ return true;
512
}
513
- return true;
514
515
516
/**
0 commit comments