Error 500 Internal Server Error

POST https://alliance2020bot.ah2020.org/telegram/79E08F3886C31C560957105716FC7ED7/webhook

Forwarded to ErrorController (9dcb3e)

Exceptions

Bad Request: there are no administrators in the private chat

Exceptions 2

Telegram\Bot\Exceptions\ TelegramResponseException

Show exception properties
Telegram\Bot\Exceptions\TelegramResponseException {#722
  -responseData: array:3 [
    "ok" => false
    "error_code" => 400
    "description" => "Bad Request: there are no administrators in the private chat"
  ]
  -response: Telegram\Bot\TelegramResponse {#736
    -httpStatusCode: 400
    -headers: array:8 [
      "Server" => array:1 [
        0 => "nginx/1.18.0"
      ]
      "Date" => array:1 [
        0 => "Tue, 09 Sep 2025 02:27:09 GMT"
      ]
      "Content-Type" => array:1 [
        0 => "application/json"
      ]
      "Content-Length" => array:1 [
        0 => "106"
      ]
      "Connection" => array:1 [
        0 => "keep-alive"
      ]
      "Strict-Transport-Security" => array:1 [
        0 => "max-age=31536000; includeSubDomains; preload"
      ]
      "Access-Control-Allow-Origin" => array:1 [
        0 => "*"
      ]
      "Access-Control-Expose-Headers" => array:1 [
        0 => "Content-Length,Content-Type,Date,Server,Connection"
      ]
    ]
    -body: "{"ok":false,"error_code":400,"description":"Bad Request: there are no administrators in the private chat"}"
    -decodedBody: array:3 [
      "ok" => false
      "error_code" => 400
      "description" => "Bad Request: there are no administrators in the private chat"
    ]
    -endPoint: "getChatAdministrators"
    -thrownException: Telegram\Bot\Exceptions\TelegramResponseException {#722}
    -request: Telegram\Bot\TelegramRequest {#703
      -accessToken: "7686888310:AAFMGsXHdTOwO4GSa0kXgsz_GoFBwHp8lK0"
      -method: "GET"
      -endpoint: "getChatAdministrators"
      -headers: []
      -params: array:1 [
        "chat_id" => "5614946747"
      ]
      -isAsyncRequest: false
      -timeOut: 60
      -connectTimeOut: 10
    }
  }
}
  1. $code = $data['error_code'];
  2. $message = $data['description'] ?? 'Unknown error from API.';
  3. }
  4. // Others
  5. return new self($response, new TelegramOtherException($message, $code));
  6. }
  7. /**
  8. * Returns the HTTP status code.
  9. */
  1. /**
  2. * Instantiates an exception to be thrown later.
  3. */
  4. public function makeException(): void
  5. {
  6. $this->thrownException = TelegramResponseException::create($this);
  7. }
  8. /**
  9. * Return the original request that returned this response.
  10. */
  1. if (! is_array($this->decodedBody)) {
  2. $this->decodedBody = [];
  3. }
  4. if ($this->isError()) {
  5. $this->makeException();
  6. }
  7. }
  8. /**
  9. * Checks if response is an error.
  1. if ($response instanceof ResponseInterface) {
  2. $this->httpStatusCode = $response->getStatusCode();
  3. $this->body = $response->getBody();
  4. $this->headers = $response->getHeaders();
  5. $this->decodeBody();
  6. } elseif ($response instanceof PromiseInterface) {
  7. $this->httpStatusCode = null;
  8. } else {
  9. throw new InvalidArgumentException(
  10. 'Second constructor argument "response" must be instance of ResponseInterface or PromiseInterface'
  1. return $this->baseBotUrl;
  2. }
  3. private function getResponse(TelegramRequest $request, ResponseInterface|PromiseInterface|null $response): TelegramResponse
  4. {
  5. return new TelegramResponse($request, $response);
  6. }
  7. private function getOptions(TelegramRequest $request, string $method): array
  8. {
  9. return $method === 'POST' ? $request->getPostParams() : ['query' => $request->getParams()];
  1. $rawResponse = $this->httpClientHandler
  2. ->setTimeOut($request->getTimeOut())
  3. ->setConnectTimeOut($request->getConnectTimeOut())
  4. ->send($url, $method, $headers, $options, $isAsyncRequest);
  5. $response = $this->getResponse($request, $rawResponse);
  6. if ($response->isError()) {
  7. throw $response->getThrownException();
  8. }
  1. */
  2. protected function sendRequest(string $method, string $endpoint, array $params = []): TelegramResponse
  3. {
  4. $telegramRequest = $this->resolveTelegramRequest($method, $endpoint, $params);
  5. return $this->lastResponse = $this->getClient()->sendRequest($telegramRequest);
  6. }
  7. /**
  8. * Instantiates a new TelegramRequest entity.
  9. */
  1. */
  2. protected function get(string $endpoint, array $params = []): TelegramResponse
  3. {
  4. $params = $this->replyMarkupToString($params);
  5. return $this->sendRequest('GET', $endpoint, $params);
  6. }
  7. /**
  8. * Converts a reply_markup field in the $params to a string.
  9. */
  1. *
  2. * @throws TelegramSDKException
  3. */
  4. public function getChatAdministrators(array $params): array
  5. {
  6. $response = $this->get('getChatAdministrators', $params);
  7. return collect($response->getResult())
  8. ->mapInto(ChatMember::class)
  9. ->all();
  10. }
Api->getChatAdministrators() in src/Service/TelegramBotService.php (line 108)
  1. /**
  2. * @throws TelegramSDKException
  3. */
  4. public function getChatAdministrators(string $chatId): array|ResponseObject
  5. {
  6. return $this->telegram->getChatAdministrators(['chat_id' => $chatId]);
  7. }
  8. }
TelegramBotService->getChatAdministrators() in src/Controller/TelegramController.php (line 80)
  1. private function parseMessage(array $message): void
  2. {
  3. //Get all administrators and cache result
  4. $administrators = $this->cache->get('chat_administrators_'.$message["chat"]["id"], function(ItemInterface $item) use ($message) {
  5. $item->expiresAfter(3600);
  6. return $this->telegramBot->getChatAdministrators($message["chat"]["id"]);
  7. });
  8. $adminFound = false;
  9. foreach ($administrators as $administrator) {
  10. if($administrator["user"]["id"] === $message["from"]["id"]) {
  11. $adminFound = true;
in vendor/symfony/cache/Adapter/TraceableAdapter.php -> App\Controller\{closure} (line 48)
  1. $isHit = true;
  2. $callback = function (CacheItem $item, bool &$save) use ($callback, &$isHit) {
  3. $isHit = $item->isHit();
  4. return $callback($item, $save);
  5. };
  6. $event = $this->start(__FUNCTION__);
  7. try {
  8. $value = $this->pool->get($key, $callback, $beta, $metadata);
in vendor/symfony/cache/LockRegistry.php -> Symfony\Component\Cache\Adapter\{closure} (line 111)
  1. if ($locked || !$wouldBlock) {
  2. $logger?->info(sprintf('Lock %s, now computing item "{key}"', $locked ? 'acquired' : 'not supported'), ['key' => $item->getKey()]);
  3. self::$lockedFiles[$key] = true;
  4. $value = $callback($item, $save);
  5. if ($save) {
  6. if ($setMetadata) {
  7. $setMetadata($item);
  8. }
  1. if (!isset($this->callbackWrapper)) {
  2. $this->setCallbackWrapper($this->setCallbackWrapper(null));
  3. }
  4. try {
  5. $value = ($this->callbackWrapper)($callback, $item, $save, $pool, function (CacheItem $item) use ($setMetadata, $startTime, &$metadata) {
  6. $setMetadata($item, $startTime, $metadata);
  7. }, $this->logger ?? null);
  8. $setMetadata($item, $startTime, $metadata);
  9. return $value;
in vendor/symfony/cache-contracts/CacheTrait.php -> Symfony\Component\Cache\Traits\{closure} (line 64)
  1. }
  2. }
  3. if ($recompute) {
  4. $save = true;
  5. $item->set($callback($item, $save));
  6. if ($save) {
  7. $pool->save($item);
  8. }
  9. }
  1. CacheItem::class
  2. );
  3. $this->callbackWrapper ??= LockRegistry::compute(...);
  4. return $this->contractsGet($pool, $key, function (CacheItem $item, bool &$save) use ($pool, $callback, $setMetadata, &$metadata, $key) {
  5. // don't wrap nor save recursive calls
  6. if (isset($this->computing[$key])) {
  7. $value = $callback($item, $save);
  8. $save = false;
  1. */
  2. trait CacheTrait
  3. {
  4. public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed
  5. {
  6. return $this->doGet($this, $key, $callback, $beta, $metadata);
  7. }
  8. public function delete(string $key): bool
  9. {
  10. return $this->deleteItem($key);
  1. return $callback($item, $save);
  2. };
  3. $event = $this->start(__FUNCTION__);
  4. try {
  5. $value = $this->pool->get($key, $callback, $beta, $metadata);
  6. $event->result[$key] = get_debug_type($value);
  7. } finally {
  8. $event->end = microtime(true);
  9. }
  10. if ($isHit) {
TraceableAdapter->get() in src/Controller/TelegramController.php (line 78)
  1. * @throws InvalidArgumentException
  2. */
  3. private function parseMessage(array $message): void
  4. {
  5. //Get all administrators and cache result
  6. $administrators = $this->cache->get('chat_administrators_'.$message["chat"]["id"], function(ItemInterface $item) use ($message) {
  7. $item->expiresAfter(3600);
  8. return $this->telegramBot->getChatAdministrators($message["chat"]["id"]);
  9. });
  10. $adminFound = false;
  11. foreach ($administrators as $administrator) {
TelegramController->parseMessage() in src/Controller/TelegramController.php (line 58)
  1. $updates = $this->telegramBot->getWebhookUpdate()->jsonSerialize();
  2. $message = $updates["channel_post"] ?? $updates["message"] ?? null;
  3. if($message) {
  4. $this->logger->log(Level::Info, json_encode($updates, JSON_THROW_ON_ERROR));
  5. try {
  6. $this->parseMessage($message);
  7. }
  8. catch (CacheException $e) {
  9. $this->logger->log(Level::Info, json_encode(["Erreur" => "Une erreur est survenue: " . $e->getMessage()], JSON_THROW_ON_ERROR));
  10. return new JsonResponse(["ok" => false], 500);
  11. }
in vendor/symfony/http-kernel/HttpKernel.php -> getWebhookUpdate (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/alliance2020bot/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. //require_once dirname(__DIR__).'/vendor/autoload.php';
  4. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  5. return function (array $context) {
  6. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  7. };

Telegram\Bot\Exceptions\ TelegramOtherException

Bad Request: there are no administrators in the private chat

  1. $code = $data['error_code'];
  2. $message = $data['description'] ?? 'Unknown error from API.';
  3. }
  4. // Others
  5. return new self($response, new TelegramOtherException($message, $code));
  6. }
  7. /**
  8. * Returns the HTTP status code.
  9. */
  1. /**
  2. * Instantiates an exception to be thrown later.
  3. */
  4. public function makeException(): void
  5. {
  6. $this->thrownException = TelegramResponseException::create($this);
  7. }
  8. /**
  9. * Return the original request that returned this response.
  10. */
  1. if (! is_array($this->decodedBody)) {
  2. $this->decodedBody = [];
  3. }
  4. if ($this->isError()) {
  5. $this->makeException();
  6. }
  7. }
  8. /**
  9. * Checks if response is an error.
  1. if ($response instanceof ResponseInterface) {
  2. $this->httpStatusCode = $response->getStatusCode();
  3. $this->body = $response->getBody();
  4. $this->headers = $response->getHeaders();
  5. $this->decodeBody();
  6. } elseif ($response instanceof PromiseInterface) {
  7. $this->httpStatusCode = null;
  8. } else {
  9. throw new InvalidArgumentException(
  10. 'Second constructor argument "response" must be instance of ResponseInterface or PromiseInterface'
  1. return $this->baseBotUrl;
  2. }
  3. private function getResponse(TelegramRequest $request, ResponseInterface|PromiseInterface|null $response): TelegramResponse
  4. {
  5. return new TelegramResponse($request, $response);
  6. }
  7. private function getOptions(TelegramRequest $request, string $method): array
  8. {
  9. return $method === 'POST' ? $request->getPostParams() : ['query' => $request->getParams()];
  1. $rawResponse = $this->httpClientHandler
  2. ->setTimeOut($request->getTimeOut())
  3. ->setConnectTimeOut($request->getConnectTimeOut())
  4. ->send($url, $method, $headers, $options, $isAsyncRequest);
  5. $response = $this->getResponse($request, $rawResponse);
  6. if ($response->isError()) {
  7. throw $response->getThrownException();
  8. }
  1. */
  2. protected function sendRequest(string $method, string $endpoint, array $params = []): TelegramResponse
  3. {
  4. $telegramRequest = $this->resolveTelegramRequest($method, $endpoint, $params);
  5. return $this->lastResponse = $this->getClient()->sendRequest($telegramRequest);
  6. }
  7. /**
  8. * Instantiates a new TelegramRequest entity.
  9. */
  1. */
  2. protected function get(string $endpoint, array $params = []): TelegramResponse
  3. {
  4. $params = $this->replyMarkupToString($params);
  5. return $this->sendRequest('GET', $endpoint, $params);
  6. }
  7. /**
  8. * Converts a reply_markup field in the $params to a string.
  9. */
  1. *
  2. * @throws TelegramSDKException
  3. */
  4. public function getChatAdministrators(array $params): array
  5. {
  6. $response = $this->get('getChatAdministrators', $params);
  7. return collect($response->getResult())
  8. ->mapInto(ChatMember::class)
  9. ->all();
  10. }
Api->getChatAdministrators() in src/Service/TelegramBotService.php (line 108)
  1. /**
  2. * @throws TelegramSDKException
  3. */
  4. public function getChatAdministrators(string $chatId): array|ResponseObject
  5. {
  6. return $this->telegram->getChatAdministrators(['chat_id' => $chatId]);
  7. }
  8. }
TelegramBotService->getChatAdministrators() in src/Controller/TelegramController.php (line 80)
  1. private function parseMessage(array $message): void
  2. {
  3. //Get all administrators and cache result
  4. $administrators = $this->cache->get('chat_administrators_'.$message["chat"]["id"], function(ItemInterface $item) use ($message) {
  5. $item->expiresAfter(3600);
  6. return $this->telegramBot->getChatAdministrators($message["chat"]["id"]);
  7. });
  8. $adminFound = false;
  9. foreach ($administrators as $administrator) {
  10. if($administrator["user"]["id"] === $message["from"]["id"]) {
  11. $adminFound = true;
in vendor/symfony/cache/Adapter/TraceableAdapter.php -> App\Controller\{closure} (line 48)
  1. $isHit = true;
  2. $callback = function (CacheItem $item, bool &$save) use ($callback, &$isHit) {
  3. $isHit = $item->isHit();
  4. return $callback($item, $save);
  5. };
  6. $event = $this->start(__FUNCTION__);
  7. try {
  8. $value = $this->pool->get($key, $callback, $beta, $metadata);
in vendor/symfony/cache/LockRegistry.php -> Symfony\Component\Cache\Adapter\{closure} (line 111)
  1. if ($locked || !$wouldBlock) {
  2. $logger?->info(sprintf('Lock %s, now computing item "{key}"', $locked ? 'acquired' : 'not supported'), ['key' => $item->getKey()]);
  3. self::$lockedFiles[$key] = true;
  4. $value = $callback($item, $save);
  5. if ($save) {
  6. if ($setMetadata) {
  7. $setMetadata($item);
  8. }
  1. if (!isset($this->callbackWrapper)) {
  2. $this->setCallbackWrapper($this->setCallbackWrapper(null));
  3. }
  4. try {
  5. $value = ($this->callbackWrapper)($callback, $item, $save, $pool, function (CacheItem $item) use ($setMetadata, $startTime, &$metadata) {
  6. $setMetadata($item, $startTime, $metadata);
  7. }, $this->logger ?? null);
  8. $setMetadata($item, $startTime, $metadata);
  9. return $value;
in vendor/symfony/cache-contracts/CacheTrait.php -> Symfony\Component\Cache\Traits\{closure} (line 64)
  1. }
  2. }
  3. if ($recompute) {
  4. $save = true;
  5. $item->set($callback($item, $save));
  6. if ($save) {
  7. $pool->save($item);
  8. }
  9. }
  1. CacheItem::class
  2. );
  3. $this->callbackWrapper ??= LockRegistry::compute(...);
  4. return $this->contractsGet($pool, $key, function (CacheItem $item, bool &$save) use ($pool, $callback, $setMetadata, &$metadata, $key) {
  5. // don't wrap nor save recursive calls
  6. if (isset($this->computing[$key])) {
  7. $value = $callback($item, $save);
  8. $save = false;
  1. */
  2. trait CacheTrait
  3. {
  4. public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed
  5. {
  6. return $this->doGet($this, $key, $callback, $beta, $metadata);
  7. }
  8. public function delete(string $key): bool
  9. {
  10. return $this->deleteItem($key);
  1. return $callback($item, $save);
  2. };
  3. $event = $this->start(__FUNCTION__);
  4. try {
  5. $value = $this->pool->get($key, $callback, $beta, $metadata);
  6. $event->result[$key] = get_debug_type($value);
  7. } finally {
  8. $event->end = microtime(true);
  9. }
  10. if ($isHit) {
TraceableAdapter->get() in src/Controller/TelegramController.php (line 78)
  1. * @throws InvalidArgumentException
  2. */
  3. private function parseMessage(array $message): void
  4. {
  5. //Get all administrators and cache result
  6. $administrators = $this->cache->get('chat_administrators_'.$message["chat"]["id"], function(ItemInterface $item) use ($message) {
  7. $item->expiresAfter(3600);
  8. return $this->telegramBot->getChatAdministrators($message["chat"]["id"]);
  9. });
  10. $adminFound = false;
  11. foreach ($administrators as $administrator) {
TelegramController->parseMessage() in src/Controller/TelegramController.php (line 58)
  1. $updates = $this->telegramBot->getWebhookUpdate()->jsonSerialize();
  2. $message = $updates["channel_post"] ?? $updates["message"] ?? null;
  3. if($message) {
  4. $this->logger->log(Level::Info, json_encode($updates, JSON_THROW_ON_ERROR));
  5. try {
  6. $this->parseMessage($message);
  7. }
  8. catch (CacheException $e) {
  9. $this->logger->log(Level::Info, json_encode(["Erreur" => "Une erreur est survenue: " . $e->getMessage()], JSON_THROW_ON_ERROR));
  10. return new JsonResponse(["ok" => false], 500);
  11. }
in vendor/symfony/http-kernel/HttpKernel.php -> getWebhookUpdate (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/alliance2020bot/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. //require_once dirname(__DIR__).'/vendor/autoload.php';
  4. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  5. return function (array $context) {
  6. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  7. };

Logs

Level Channel Message
INFO 09:28:27 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "245909"
    },
    "request_uri": "https://alliance2020bot.ah2020.org/_profiler/245909",
    "method": "GET"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "ContainerT6hmvMI\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerT6hmvMI\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "ContainerT6hmvMI\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerT6hmvMI\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 09:28:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 09:28:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 09:28:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 09:28:27 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 09:28:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "ContainerT6hmvMI\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerT6hmvMI\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 09:28:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] TelegramResponseException
Telegram\Bot\Exceptions\TelegramResponseException:
Bad Request: there are no administrators in the private chat

  at vendor/irazasyed/telegram-bot-sdk/src/Exceptions/TelegramResponseException.php:59
  at Telegram\Bot\Exceptions\TelegramResponseException::create()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:96)
  at Telegram\Bot\TelegramResponse->makeException()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:79)
  at Telegram\Bot\TelegramResponse->decodeBody()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:49)
  at Telegram\Bot\TelegramResponse->__construct()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramClient.php:122)
  at Telegram\Bot\TelegramClient->getResponse()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramClient.php:50)
  at Telegram\Bot\TelegramClient->sendRequest()
     (vendor/irazasyed/telegram-bot-sdk/src/Traits/Http.php:152)
  at Telegram\Bot\Api->sendRequest()
     (vendor/irazasyed/telegram-bot-sdk/src/Traits/Http.php:128)
  at Telegram\Bot\Api->get()
     (vendor/irazasyed/telegram-bot-sdk/src/Methods/Chat.php:591)
  at Telegram\Bot\Api->getChatAdministrators()
     (src/Service/TelegramBotService.php:108)
  at App\Service\TelegramBotService->getChatAdministrators()
     (src/Controller/TelegramController.php:80)
  at App\Controller\TelegramController->App\Controller\{closure}()
     (vendor/symfony/cache/Adapter/TraceableAdapter.php:48)
  at Symfony\Component\Cache\Adapter\TraceableAdapter->Symfony\Component\Cache\Adapter\{closure}()
     (vendor/symfony/cache/LockRegistry.php:111)
  at Symfony\Component\Cache\LockRegistry::compute()
     (vendor/symfony/cache/Traits/ContractsTrait.php:102)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->Symfony\Component\Cache\Traits\{closure}()
     (vendor/symfony/cache-contracts/CacheTrait.php:64)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->contractsGet()
     (vendor/symfony/cache/Traits/ContractsTrait.php:85)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->doGet()
     (vendor/symfony/cache-contracts/CacheTrait.php:30)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->get()
     (vendor/symfony/cache/Adapter/TraceableAdapter.php:53)
  at Symfony\Component\Cache\Adapter\TraceableAdapter->get()
     (src/Controller/TelegramController.php:78)
  at App\Controller\TelegramController->parseMessage()
     (src/Controller/TelegramController.php:58)
  at App\Controller\TelegramController->getWebhookUpdate()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/alliance2020bot/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] TelegramOtherException
Telegram\Bot\Exceptions\TelegramOtherException:
Bad Request: there are no administrators in the private chat

  at vendor/irazasyed/telegram-bot-sdk/src/Exceptions/TelegramResponseException.php:59
  at Telegram\Bot\Exceptions\TelegramResponseException::create()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:96)
  at Telegram\Bot\TelegramResponse->makeException()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:79)
  at Telegram\Bot\TelegramResponse->decodeBody()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramResponse.php:49)
  at Telegram\Bot\TelegramResponse->__construct()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramClient.php:122)
  at Telegram\Bot\TelegramClient->getResponse()
     (vendor/irazasyed/telegram-bot-sdk/src/TelegramClient.php:50)
  at Telegram\Bot\TelegramClient->sendRequest()
     (vendor/irazasyed/telegram-bot-sdk/src/Traits/Http.php:152)
  at Telegram\Bot\Api->sendRequest()
     (vendor/irazasyed/telegram-bot-sdk/src/Traits/Http.php:128)
  at Telegram\Bot\Api->get()
     (vendor/irazasyed/telegram-bot-sdk/src/Methods/Chat.php:591)
  at Telegram\Bot\Api->getChatAdministrators()
     (src/Service/TelegramBotService.php:108)
  at App\Service\TelegramBotService->getChatAdministrators()
     (src/Controller/TelegramController.php:80)
  at App\Controller\TelegramController->App\Controller\{closure}()
     (vendor/symfony/cache/Adapter/TraceableAdapter.php:48)
  at Symfony\Component\Cache\Adapter\TraceableAdapter->Symfony\Component\Cache\Adapter\{closure}()
     (vendor/symfony/cache/LockRegistry.php:111)
  at Symfony\Component\Cache\LockRegistry::compute()
     (vendor/symfony/cache/Traits/ContractsTrait.php:102)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->Symfony\Component\Cache\Traits\{closure}()
     (vendor/symfony/cache-contracts/CacheTrait.php:64)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->contractsGet()
     (vendor/symfony/cache/Traits/ContractsTrait.php:85)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->doGet()
     (vendor/symfony/cache-contracts/CacheTrait.php:30)
  at Symfony\Component\Cache\Adapter\AbstractAdapter->get()
     (vendor/symfony/cache/Adapter/TraceableAdapter.php:53)
  at Symfony\Component\Cache\Adapter\TraceableAdapter->get()
     (src/Controller/TelegramController.php:78)
  at App\Controller\TelegramController->parseMessage()
     (src/Controller/TelegramController.php:58)
  at App\Controller\TelegramController->getWebhookUpdate()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/alliance2020bot/vendor/autoload_runtime.php')
     (public/index.php:5)