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

View File

@ -87,7 +87,7 @@ HELP;
{ {
$first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]); $first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]);
if (empty($first)) { 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; return;
} }
$this->out($first['url']); $this->out($first['url']);