mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 14:29:29 +01:00
fix ternary and [close [#585]]
This commit is contained in:
parent
e43ead6832
commit
f87f6a37d4
@ -27,7 +27,7 @@ var youtube = function(dbot) {
|
|||||||
var v = body.feed.entry[0],
|
var v = body.feed.entry[0],
|
||||||
seconds = v['media$group']['yt$duration'].seconds,
|
seconds = v['media$group']['yt$duration'].seconds,
|
||||||
minutes = Math.floor(seconds / 60),
|
minutes = Math.floor(seconds / 60),
|
||||||
seconds%60 < 10 ? seconds="0"+seconds%60 : seconds=seconds%60;
|
seconds = ((seconds%60 < 10) ? "0"+seconds%60 : seconds%60);
|
||||||
|
|
||||||
if(!_.has(v, 'yt$rating')) {
|
if(!_.has(v, 'yt$rating')) {
|
||||||
v['yt$rating'] = {
|
v['yt$rating'] = {
|
||||||
@ -68,7 +68,7 @@ var youtube = function(dbot) {
|
|||||||
var v = body.entry
|
var v = body.entry
|
||||||
seconds = v['media$group']['yt$duration'].seconds,
|
seconds = v['media$group']['yt$duration'].seconds,
|
||||||
minutes = Math.floor(seconds / 60),
|
minutes = Math.floor(seconds / 60),
|
||||||
seconds%60 < 10 ? seconds="0"+seconds%60 : seconds=seconds%60;
|
seconds = ((seconds%60 < 10) ? "0"+seconds%60 : seconds%60);
|
||||||
|
|
||||||
if(!_.has(v, 'yt$rating')) {
|
if(!_.has(v, 'yt$rating')) {
|
||||||
v['yt$rating'] = {
|
v['yt$rating'] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user