Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Commit

Permalink
Add a second var
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysalvat committed Apr 25, 2014
1 parent 9804155 commit 76d3468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/youtube-dl.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ ytdl.getInfo = function(url, options, callback) {
call(url, args, options, function(err, data) {
if (err) return callback(err);

var playlist = [],
track = [];
var playlist = [];
var track = [];

data.forEach(function(row) {
track.push(row);
Expand Down

0 comments on commit 76d3468

Please sign in to comment.