We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7c987 commit b31168dCopy full SHA for b31168d
1 file changed
src/Structures/TelegramBot.php
@@ -2,6 +2,7 @@
2
3
namespace CSlant\TelegramGitNotifier\Structures;
4
5
+use CSlant\TelegramGitNotifier\Notifier;
6
use Telegram;
7
8
trait TelegramBot
@@ -25,7 +26,7 @@ public function isNotifyChat(): bool
25
26
{
27
$chatIds = config('telegram-git-notifier.bot.notify_chat_ids');
28
- $notifyChatIds = ChatTarget::parseNotifyChatIds($chatIds);
29
+ $notifyChatIds = Notifier::parseNotifyChatIds($chatIds);
30
31
return in_array((string) $this->telegram->ChatID(), $notifyChatIds, true);
32
}
0 commit comments