2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-28 04:19:01 +00:00

Fix inferIcon error surfacing in full since recent axios

This commit is contained in:
Ronan Jouchet 2021-01-15 21:57:19 -05:00
parent 17f688de63
commit 35d926b959

View File

@ -22,7 +22,10 @@ export async function icon(options: IconParams): Promise<string> {
options.packager.platform, options.packager.platform,
); );
} catch (error) { } catch (error) {
log.warn('Cannot automatically retrieve the app icon:', error); log.warn(
'Cannot automatically retrieve the app icon:',
error.message || '',
);
return null; return null;
} }
} }