No need to merge into signature if there is no signature

This commit is contained in:
nathan 2022-11-03 10:54:14 -06:00
parent 693cf1f116
commit 8f51b00da3

View File

@ -1266,7 +1266,7 @@ abstract class Tracking
{
error_log($this->app . ' did not properly implement bo_tracking->id_field. Merge skipped.');
}
elseif(class_exists($this->app. '_merge'))
elseif(class_exists($this->app . '_merge') && $config['signature'])
{
$merge_class = $this->app . '_merge';
$merge = new $merge_class();