Skip to content

Commit

Permalink
Issue #1095: Kernel::System::Web::Request is a soft dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Jun 21, 2021
1 parent 3880930 commit d35ac3e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Kernel/System/Calendar/Event/Transport/Email.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ our @ObjectDependencies = (
'Kernel::System::Log',
'Kernel::System::Main',
'Kernel::System::SystemAddress',
);
our @SoftObjectDependencies = (
'Kernel::System::Web::Request',
);

Expand Down Expand Up @@ -379,7 +381,9 @@ sub TransportParamSettingsGet {
)
{
my @Data = $ParamObject->GetArray( Param => $Parameter );
next PARAMETER if !@Data;

next PARAMETER unless @Data;

$Param{GetParam}->{Data}->{$Parameter} = \@Data;
}

Expand Down

0 comments on commit d35ac3e

Please sign in to comment.