Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
200percentmicky committed Jun 24, 2021
1 parent 1020921 commit 4f68bf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "distube",
"version": "2.8.8-chadtube-2021.5.13",
"version": "2.8.8-chadtube-2021.6.24",
"description": "A Discord.js v12 module to simplify your music commands and play songs with audio filters on Discord without any API key. Support YouTube, SoundCloud, Bandcamp, Facebook, and 700+ more sites",
"main": "src/DisTube.js",
"typings": "typings/DisTube.d.ts",
Expand Down Expand Up @@ -45,8 +45,9 @@
"@distube/ytdl": "^1.0.6",
"@distube/ytpl": "^1.0.8",
"@distube/ytsr": "^1.1.0",
"discord-ytdl-core": "^5.0.4",
"lodash": "^4.17.21",
"ytdl-core": "^4.8.0"
"ytdl-core": "github:fent/node-ytdl-core#pull/938/head"
},
"devDependencies": {
"@discordjs/opus": "^0.3.3",
Expand Down
2 changes: 1 addition & 1 deletion src/DisTube.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ytdl = require("@distube/ytdl"),
youtube_dl = require("@distube/youtube-dl"),
path = require("path"),
fs = require("fs"),
_ = require('lodash'),
_ = require("lodash"),
{ promisify } = require("util");
const youtube_dlOptions = ["--no-warnings", "--force-ipv4"];
const binPath = path.join(__dirname, `../youtube-dl/youtube-dl${process.platform === "win32" || process.env.NODE_PLATFORM === "windows" ? ".exe" : ""}`);
Expand Down

0 comments on commit 4f68bf8

Please sign in to comment.