diff --git a/src/components/imageDownloader/imageDownloader.js b/src/components/imageDownloader/imageDownloader.js index 7f730aa0fb..1fb32a0864 100644 --- a/src/components/imageDownloader/imageDownloader.js +++ b/src/components/imageDownloader/imageDownloader.js @@ -79,7 +79,7 @@ import template from './imageDownloader.template.html'; let html = ''; for (let i = 0, length = imagesResult.Images.length; i < length; i++) { - html += getRemoteImageHtml(imagesResult.Images[i], imageType, apiClient); + html += getRemoteImageHtml(imagesResult.Images[i], imageType); } const availableImagesList = page.querySelector('.availableImagesList'); @@ -150,7 +150,7 @@ import template from './imageDownloader.template.html'; }); } - function getRemoteImageHtml(image, imageType, apiClient) { + function getRemoteImageHtml(image, imageType) { const tagName = layoutManager.tv ? 'button' : 'div'; const enableFooterButtons = !layoutManager.tv; diff --git a/src/components/itemidentifier/itemidentifier.js b/src/components/itemidentifier/itemidentifier.js index 6d9d34faa2..885f21a2f3 100644 --- a/src/components/itemidentifier/itemidentifier.js +++ b/src/components/itemidentifier/itemidentifier.js @@ -171,7 +171,6 @@ import template from './itemidentifier.template.html'; let resultHtml = lines.join('
'); if (identifyResult.ImageUrl) { - resultHtml = `
${resultHtml}
`; }