Skip to content

Commit

Permalink
Merge branch 'feature-PRESIDECMS-2705_exception-type-is-not-simple-va…
Browse files Browse the repository at this point in the history
…lue' into hotfix-10.24.17
  • Loading branch information
DominicWatson committed Sep 18, 2023
2 parents 75b38f8 + 2f93e5c commit 2eed4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Bootstrap.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ component {
private boolean function _dealWithSqlReloadProtectionErrors( required struct exception ) output=true {
var exceptionType = ( arguments.exception.type ?: "" );

if ( exceptionType == "presidecms.auto.schema.sync.disabled" ) {
if ( IsSimpleValue( exceptionType ) && exceptionType == "presidecms.auto.schema.sync.disabled" ) {
thread name=CreateUUId() e=arguments.exception {
new preside.system.services.errors.ErrorLogService(
appMapping = request._presideMappings.appMapping ?: "/app"
Expand Down

0 comments on commit 2eed4ba

Please sign in to comment.