fix for below one minite

This commit is contained in:
reality 2015-04-27 09:50:51 +00:00
parent 5bf1e24d02
commit b9786b1d2f

View File

@ -28,7 +28,7 @@ var youtube = function(dbot) {
this.internalAPI = {
'formatLink': function(v) {
var time = v.contentDetails.duration.match(/^PT(\d+)M(\d+)S$/);
var time = v.contentDetails.duration.match(/^PT(\d+)?M?(\d+)S$/);
if(time[2]) {
var seconds =((time[2]%60 < 10) ? "0"+time[2]%60 : time[2]%60),
minutes = time[1];