Commit 5fed542c authored by Avtandil Kikabidze's avatar Avtandil Kikabidze

Merge pull request #56 from TheReverend403/patch-1

Fixed fatal error in NewchatparticipantCommand.php
parents 6a3a1694 616f3c95
......@@ -36,7 +36,7 @@ class NewchatparticipantCommand extends Command
if (strtolower($participant->getUsername()) == strtolower($this->getTelegram()->getBotName())) {
$text = 'Hi there!';
} else {
$text = 'Hi '.$this->tryMention($partecipant).' !';
$text = 'Hi '.$this->tryMention($participant).' !';
}
$data['text'] = $text;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment