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
1 changed files with 4 additions and 1 deletions

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;
}
}