Fixed getPoll for missing poll tokens

This commit is contained in:
aymm 2021-03-11 06:00:04 +00:00
parent 688721b167
commit 7eb3f2aad0

View File

@ -467,7 +467,7 @@ class APnutI
$this->logger->error('Poll not supported: '.json_encode($res)); $this->logger->error('Poll not supported: '.json_encode($res));
throw $e; throw $e;
} catch (HttpPnutForbiddenException $fe) { } catch (HttpPnutForbiddenException $fe) {
$this->logger->error('Poll token required and not provided!: '.json_encode($res)); $this->logger->error('Poll token required and not provided!');
throw $fe; throw $fe;
} }
} }