mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-07 22:19:02 +00:00
fix misidentification of mac as windows
This commit is contained in:
parent
0e168b5f84
commit
faab6d013f
@ -17,7 +17,7 @@ let tray;
|
||||
function enhancements() {
|
||||
const { Tray, Menu, nativeImage, app } = require('electron'),
|
||||
isMac = process.platform === 'darwin',
|
||||
isWin = process.platform.includes('win'),
|
||||
isWin = process.platform === 'win32',
|
||||
path = require('path'),
|
||||
store = require(path.join(__dirname, '..', 'store.js'))({
|
||||
config: 'user-preferences',
|
||||
|
Loading…
Reference in New Issue
Block a user