mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-01-03 14:17:29 +00:00
Fix inferIcon error surfacing in full since recent axios
This commit is contained in:
parent
17f688de63
commit
35d926b959
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user