Fixed typo in song_queue.lua

This commit is contained in:
Matthieu Grieger 2014-09-16 13:30:58 -07:00
parent 7ea0de1145
commit 82f775e6c7

View file

@ -53,7 +53,7 @@ function getYoutubeInfo(id, username)
id = id,
title = name,
duration = string.format("%d:%02d", duration / 60, duration % 60),
thumbnail = thumbnail
thumbnail = thumbnail,
username = username
}
end
@ -83,4 +83,8 @@ function SongQueue.getNextSong(url)
end
function SongQueue.getLength()
return song_queue:length()
end
return SongQueue