mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-25 09:41:49 +08:00
fix(utils/platform): isCreateTray 在瀏覽器環境應永遠為應永遠為 false
This commit is contained in:
parent
fbf695eb16
commit
748db54f52
|
@ -3,5 +3,6 @@ export const isMac = process.platform === 'darwin';
|
|||
export const isLinux = process.platform === 'linux';
|
||||
export const isDevelopment = process.env.NODE_ENV === 'development';
|
||||
|
||||
export const isCreateTray = isWindows || isLinux || isDevelopment;
|
||||
export const isCreateTray =
|
||||
process.env.IS_ELECTRON && (isWindows || isLinux || isDevelopment);
|
||||
export const isCreateMpris = isLinux;
|
||||
|
|
Loading…
Reference in New Issue
Block a user