Use correct placeholder

This commit is contained in:
Michael Vogel 2022-05-24 19:45:02 +02:00
parent 0ff8ca8053
commit 0374f0e523

View File

@ -89,26 +89,26 @@ HELP;
echo ++$count . '/' . $total . "\t" . $contact['id'] . "\t" . $contact['url'] . "\t"; echo ++$count . '/' . $total . "\t" . $contact['id'] . "\t" . $contact['url'] . "\t";
$resourceid = Photo::ridFromURI($contact['photo']); $resourceid = Photo::ridFromURI($contact['photo']);
if (empty($resourceid)) { if (empty($resourceid)) {
echo $this->l10n->t('no resource in photo %1', $contact['photo']) . "\n"; echo $this->l10n->t('no resource in photo %s', $contact['photo']) . "\n";
continue; continue;
} }
echo '1'; echo '1';
$photo = Photo::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]); $photo = Photo::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
if (empty($photo)) { if (empty($photo)) {
echo ' ' . $this->l10n->t('no photo with id %1', $resourceid) . "\n"; echo ' ' . $this->l10n->t('no photo with id %s', $resourceid) . "\n";
continue; continue;
} }
echo '2'; echo '2';
$imgdata = Photo::getImageDataForPhoto($photo); $imgdata = Photo::getImageDataForPhoto($photo);
if (empty($imgdata)) { if (empty($imgdata)) {
echo ' ' . $this->l10n->t('no image data for photo with id %1', $resourceid) . "\n"; echo ' ' . $this->l10n->t('no image data for photo with id %s', $resourceid) . "\n";
continue; continue;
} }
echo '3'; echo '3';
$image = new Image($imgdata, Images::getMimeTypeByData($imgdata)); $image = new Image($imgdata, Images::getMimeTypeByData($imgdata));
if (!$image->isValid()) { if (!$image->isValid()) {
echo ' ' . $this->l10n->t('invalid image for id %1', $resourceid) . "\n"; echo ' ' . $this->l10n->t('invalid image for id %s', $resourceid) . "\n";
continue; continue;
} }