From a46bf2d3194389f80553b5cf0ab1d299385a2cbe Mon Sep 17 00:00:00 2001 From: vincent Date: Sat, 31 Aug 2024 18:17:33 +0200 Subject: [PATCH] corrige une typo --- src/Service/SourceGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/SourceGenerator.php b/src/Service/SourceGenerator.php index 9ec3c8b..e410ae9 100644 --- a/src/Service/SourceGenerator.php +++ b/src/Service/SourceGenerator.php @@ -17,7 +17,7 @@ class SourceGenerator $parts[] = $task->getName(); foreach (explode(' ', $project->getHashtags()) as $hashtag) { - $parts[] = $hashtag; + $parts[] = '#'.$hashtag; } $source = implode(' ', $parts);