css: fix escaping backticks
This commit is contained in:
parent
c72f1a3fc0
commit
7a04cb57df
1 changed files with 1 additions and 1 deletions
2
src/bootstrap.js
vendored
2
src/bootstrap.js
vendored
|
@ -43,7 +43,7 @@ const startCore = () => {
|
|||
bw.webContents.executeJavaScript(readFileSync(join(__dirname, 'mainWindow.js'), 'utf8')
|
||||
.replaceAll('<hash>', hash || 'custom')
|
||||
.replaceAll('<notrack>', oaConfig.noTrack)
|
||||
.replace('<css>', (oaConfig.css ?? '').replaceAll('`', '\\`').replaceAll('\\', '\\\\')));
|
||||
.replace('<css>', (oaConfig.css ?? '').replaceAll('\\', '\\\\').replaceAll('`', '\\`')));
|
||||
|
||||
if (oaConfig.js) bw.webContents.executeJavaScript(oaConfig.js);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue