Fix an issue where Discord would think
installation was corrupted due to wrong path on Discord voice
This commit is contained in:
parent
b090f16929
commit
5d052e2b7c
|
@ -1,4 +1,4 @@
|
|||
const VoiceEngine = require((process.platform === "linux") ? './discord_voice_linux.node' : (process.platform === "darwin") ? 'discord_voice_darwin.node' : './discord_voice.node');
|
||||
const VoiceEngine = require((process.platform === "linux") ? './discord_voice_linux.node' : (process.platform === "darwin") ? './discord_voice_darwin.node' : './discord_voice.node');
|
||||
const ChildProcess = require('child_process');
|
||||
const path = require('path');
|
||||
const yargs = require('yargs');
|
||||
|
|
Loading…
Reference in New Issue