4
0

update 2023-07-24 23:13:51

This commit is contained in:
Robot 2023-07-24 23:13:51 +02:00
parent e28936034f
commit 3c983ea889
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class Config extends BaseConfig
*/
protected function getTranslation(): ?string
{
return $this->input->getWord('t') ?? $this->input->getWord('version') ?? $this->input->getWord('translation');
return $this->input->getString('t') ?? $this->input->getString('version') ?? $this->input->getString('translation');
}
/**

View File

@ -51,7 +51,7 @@
*/
protected function getTranslation(): ?string
{
return $this->input->getWord('t') ?? $this->input->getWord('version') ?? $this->input->getWord('translation');
return $this->input->getString('t') ?? $this->input->getString('version') ?? $this->input->getString('translation');
}
/**