diff options
author | Christoph Settgast <csett86@web.de> | 2022-03-28 20:38:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 20:38:03 +0200 |
commit | a5051074560ec8631bd7ce85e58195516ab9220b (patch) | |
tree | 38c608cef814e4a560cff818cb2d4db86d8dc6d1 /main.js | |
parent | bc71f954ac201cde1591d607df51fbfebdb27e36 (diff) |
chore: use require instead of global process (#741)
Diffstat (limited to 'main.js')
-rw-r--r-- | main.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* global __dirname, process */ +/* global __dirname */ const { BrowserWindow, @@ -20,6 +20,7 @@ const { setupScreenSharingMain } = require('@jitsi/electron-sdk'); const path = require('path'); +const process = require('process'); const URL = require('url'); const config = require('./app/features/config'); const { openExternalLink } = require('./app/features/utils/openExternalLink'); |