mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Potential FFMPEG process fix (#381)
I am by no means sure that this will work. This is an experimental fix. Please review it carefully; I’m not the best at working with audio/streams.
This commit is contained in:
@@ -1605,9 +1605,9 @@ var InternalClient = (function () {
|
||||
data = {
|
||||
name: data.name || channel.name,
|
||||
topic: data.topic || channel.topic,
|
||||
position: data.position || channel.position,
|
||||
user_limit: data.userLimit || channel.userLimit,
|
||||
bitrate: data.bitrate || channel.bitrate
|
||||
position: data.position ? data.position : channel.position,
|
||||
user_limit: data.userLimit ? data.userLimit : channel.userLimit,
|
||||
bitrate: data.bitrate ? data.bitrate : channel.bitrate
|
||||
};
|
||||
|
||||
if (data.position < 0) {
|
||||
|
||||
Reference in New Issue
Block a user