typo in console tool

@gunchleoc spottet a typo while working on the translations of Friendica. This fixes it.
This commit is contained in:
Tobias Diekershoff 2022-08-05 15:37:38 +02:00
parent bd246b8cc2
commit 91911c4676
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ HELP;
{
$first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]);
if (empty($first)) {
$this->err($this->l10n->t('No valid first countact found for uri-id %d.', $uriid));
$this->err($this->l10n->t('No valid first contact found for uri-id %d.', $uriid));
return;
}
$this->out($first['url']);