fix: window title fix

This commit is contained in:
smartfrigde 2024-04-29 17:03:27 +02:00
parent 052ef80e06
commit a532cb9a72

View file

@ -177,17 +177,16 @@ async function doAfterDefiningTheWindow(): Promise<void> {
mainWindow.setIcon(trayPath); mainWindow.setIcon(trayPath);
} }
}); });
mainWindow.webContents.on("page-title-updated", async (e, title) => {
const armCordSuffix = " - ArmCord"; /* identify */
if (!title.endsWith(armCordSuffix)) {
e.preventDefault();
await mainWindow.webContents.executeJavaScript(
`document.title = '${title.replace("Discord |", "") + armCordSuffix}'`
);
}
});
} }
mainWindow.webContents.on("page-title-updated", async (e, title) => {
const armCordSuffix = " - ArmCord"; /* identify */
if (!title.endsWith(armCordSuffix)) {
e.preventDefault();
await mainWindow.webContents.executeJavaScript(
`document.title = '${title.replace("Discord |", "") + armCordSuffix}'`
);
}
});
const userDataPath = app.getPath("userData"); const userDataPath = app.getPath("userData");
const themesFolder = `${userDataPath}/themes/`; const themesFolder = `${userDataPath}/themes/`;
if (!fs.existsSync(themesFolder)) { if (!fs.existsSync(themesFolder)) {