From 40dc680f1c70f859c1b19189ffc9706752b471ed Mon Sep 17 00:00:00 2001 From: Chris Hubbard Date: Wed, 11 Feb 2026 08:44:15 -0500 Subject: [PATCH] Add missing change from PR#937 --- convert/convertMedia.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert/convertMedia.ts b/convert/convertMedia.ts index 5fd75ea32..35f774c04 100644 --- a/convert/convertMedia.ts +++ b/convert/convertMedia.ts @@ -175,7 +175,7 @@ export class ConvertMedia extends Task { await sharp(androidIcon) .resize(180, 180) .toFile(path.join('src', 'gen-assets', 'icons', 'apple-touch-icon.png')); - } else if (verbose) { + } else { throw new Error('No Android icon found to generate apple-touch-icon.png'); } }