2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-20 20:32:28 +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,
);
} catch (error) {
log.warn('Cannot automatically retrieve the app icon:', error);
log.warn(
'Cannot automatically retrieve the app icon:',
error.message || '',
);
return null;
}
}