From 738dd3fb75c244e5214453931cebbd5c2d1f1e8e Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Thu, 22 May 2014 19:51:35 -0700 Subject: [PATCH] Fix 'user voteskipped [object Object] ' --- lib/channel/voteskip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/channel/voteskip.js b/lib/channel/voteskip.js index 3102d32a..171a4281 100644 --- a/lib/channel/voteskip.js +++ b/lib/channel/voteskip.js @@ -35,7 +35,7 @@ VoteskipModule.prototype.handleVoteskip = function (user) { var title = ""; if (this.channel.modules.playlist.current) { - title = " " + this.channel.modules.playlist.current; + title = " " + this.channel.modules.playlist.current.media.title; } var name = user.getName() || "(anonymous)"