Fixed bug that only occurs in persistent databases (setOperation was not called).

This commit is contained in:
Kevin Jahns
2016-08-01 16:52:02 +02:00
parent 63f8a891be
commit 74c881bb5b
3 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
module.exports = function (Y) {
var globalRoom = {
users: {},
buffers: {}, // TODO: reimplement this idea. This does not cover all cases!! Here, you have a queue which is unrealistic (i.e. think about multiple incoming connections)
buffers: {},
removeUser: function (user) {
for (var i in this.users) {
this.users[i].userLeft(user)