FIX: removed + in Project Name
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
c493105397
commit
35c87bac6c
@ -57,7 +57,10 @@ sub redmine2ntfy
|
||||
my $entityUrl=$4;
|
||||
my $entityName=$5;
|
||||
my $author=$6;
|
||||
|
||||
$author =~ s/\+/ /g;
|
||||
$projectName=~ s/\+/ /g;
|
||||
|
||||
|
||||
my $status;
|
||||
if ($entity eq "Issue")
|
||||
@ -65,6 +68,8 @@ sub redmine2ntfy
|
||||
$entityName=~s/\+/ /g;
|
||||
}
|
||||
|
||||
|
||||
|
||||
my $title = "$entity update for $projectName";
|
||||
my $text = "There has been an $entity update for project [$projectName]($projectUrl) by $author on [$entityName]($entityUrl)";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user