From 05d6d5b1204f69d45fe6ea9d6d0daba464d41be2 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Mon, 6 May 2013 21:09:33 -0500 Subject: [PATCH] Fix #98 --- channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel.js b/channel.js index fd552d5c..d92806c0 100644 --- a/channel.js +++ b/channel.js @@ -487,7 +487,7 @@ Channel.prototype.sendPlaylist = function(user) { Channel.prototype.sendMediaUpdate = function(user) { if(this.media != null) { - user.socket.emit("mediaUpdate", this.media.fullupdate()); + user.socket.emit("changeMedia", this.media.fullupdate()); } }