Fix video deletes

This commit is contained in:
calzoneman 2013-10-12 19:46:39 -05:00
parent 8c80088192
commit b70526db4d
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
Sat Oct 12 19:43 2013 CDT
* lib/user.js: Fix jumpTo kick bug
* lib/user.js: Fix jumpTo kick bug (and delete)
* lib/api.js: Fix unloaded channel API listing bug
Sat Oct 12 19:02 2013 CDT

View File

@ -264,7 +264,6 @@ User.prototype.initCallbacks = function () {
});
self.socket.on("delete", function (data) {
data = (typeof data !== "object") ? {} : data;
if (self.inChannel()) {
self.channel.tryDequeue(self, data);
}