Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Commit

Permalink
Handle all mentioned Issues on a single line
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Dec 11, 2017
1 parent 5fb72da commit 9f5cc43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SB/Plugin/GitHub.pm6
Expand Up @@ -34,7 +34,7 @@ method irc-privmsg-channel ($e) {
) ":"/ -> $ ($_) {
my $repo = .Str.uc;
$repo = 'SPEC' if $repo eq 'ROAST';
@mentions.append: map { $repo => ~.[0] }, $e.Str ~~ /[^|\s+] '#' \s* (<ticket>)/;
@mentions.append: map { $repo => ~.[0] }, $e.Str ~~ m:g/[^|\s+] '#' \s* (<ticket>)/;
}
}

Expand Down

0 comments on commit 9f5cc43

Please sign in to comment.