We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2139224 commit e1be3bbCopy full SHA for e1be3bb
src/main/platforms/macos.ts
@@ -72,10 +72,9 @@ export const adapter: AppReader = {
72
if (!isElectronBased) throw new Error("Not an electron app");
73
74
const info = await readPlistFile(path.join(p, "Contents/Info.plist"));
75
- // const icon = await readIcnsAsImageUri(
76
- // path.join(p, "Contents/Resources", info.CFBundleIconFile),
77
- // );
78
- const icon = "";
+ const icon = await readIcnsAsImageUri(
+ path.join(p, "Contents/Resources", info.CFBundleIconFile),
+ );
79
80
return {
81
id: info.CFBundleIdentifier,
0 commit comments