Fixed typo in song_queue.lua
This commit is contained in:
parent
7ea0de1145
commit
82f775e6c7
|
@ -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
|
||||
|
|
Reference in a new issue